sitecore

Nested virtual directory or application within sitecore site, is it possible

人走茶凉 提交于 2019-12-01 12:43:00
I would like to nest asp.net web app within sitecore site, something like this: <sitecore web root folder> . <virtual directory/app folder> I want to access sitecore site by using following url: http://<whatever site name> and I would like to access web app by using following url: http://<whatever site name>/<whatever virtual directory/app alias> Is this possible? I tried it but when I try to access my web app (not sitecore) then web app complains about missing sitecore. I believe that is because now I have two config files ans when accessing web app iis/asp.net processing first sitecore web

Nested virtual directory or application within sitecore site, is it possible

梦想的初衷 提交于 2019-12-01 12:25:02
问题 I would like to nest asp.net web app within sitecore site, something like this: <sitecore web root folder> . <virtual directory/app folder> I want to access sitecore site by using following url: http://<whatever site name> and I would like to access web app by using following url: http://<whatever site name>/<whatever virtual directory/app alias> Is this possible? I tried it but when I try to access my web app (not sitecore) then web app complains about missing sitecore. I believe that is

How to link a droplink to a Treelist in Sitecore

吃可爱长大的小学妹 提交于 2019-12-01 11:16:47
I'm trying to figure out how I can link a Droplink to the selected items in a Treelist . I have a field Theme , which is the Treelist , and a field MasterTheme , which is the Droplink . I should be able to select a master-theme in the Droplink , which is filled with the selected data from the Treelist . I'm pretty new to Sitecore, and I'm not familiar with Custom classes. Kevin Brechbühl You can use the getLookupSourceItems -pipeline for this. With a Droplink you can specify a Sitecore query as source. And with the getLookupSourceItems you can change the source at runtime. The following

How to link a droplink to a Treelist in Sitecore

我的未来我决定 提交于 2019-12-01 09:59:15
问题 I'm trying to figure out how I can link a Droplink to the selected items in a Treelist . I have a field Theme , which is the Treelist , and a field MasterTheme , which is the Droplink . I should be able to select a master-theme in the Droplink , which is filled with the selected data from the Treelist . I'm pretty new to Sitecore, and I'm not familiar with Custom classes. 回答1: You can use the getLookupSourceItems -pipeline for this. With a Droplink you can specify a Sitecore query as source.

Conditional Renderings with JavaScript Regex

拥有回忆 提交于 2019-12-01 09:31:38
I need to match on a string such as this: 'if Country equals "United States" then Show' I'm working with the Webforms for Marketers Module in Sitecore. Sitecore is a .NET based CMS. The Webforms for Marketers Modules is a module that provides a GUI for non-developers to design forms with textboxes, drop-down lists, checkboxes, etc... I have requirements to only show certain fields on the form if the user picked a certain option in a previous field. For example: only show the States drop-down list if the user picked "United States" from the Country drop-down list. The problem is, the WFFM

Conditional Renderings with JavaScript Regex

隐身守侯 提交于 2019-12-01 08:40:35
问题 I need to match on a string such as this: 'if Country equals "United States" then Show' I'm working with the Webforms for Marketers Module in Sitecore. Sitecore is a .NET based CMS. The Webforms for Marketers Modules is a module that provides a GUI for non-developers to design forms with textboxes, drop-down lists, checkboxes, etc... I have requirements to only show certain fields on the form if the user picked a certain option in a previous field. For example: only show the States drop-down

How do I bucket Sitecore items on something other than their creation date?

生来就可爱ヽ(ⅴ<●) 提交于 2019-12-01 08:04:26
I'm using Sitecore with DMS (Sitecore 7.2), and I'm setting up various controls on my layouts to pull content from different folders based on the users profile card. I'd like those folders to be "bucket" folders, since there'll be one folder for each profile card, and it'll be a bit unpleasant for authors to have to manually update all of these folders every time a new profile card is added. The " Developers Guide to Item Buckets and Search " says: by default, the items are organized according to the date and time of when the item was created, but this can be configured to use different

Sitecore Language Embedding multiple sites

匆匆过客 提交于 2019-12-01 08:00:41
I'm looking to run two sites off one Sitecore install. The first site will only be in UK English therefore I won't include the language in the file path. languageEmbedding=never The second site will be in multiple languages and I need to include the language in the file path. languageEmbedding=always Is there a way I can define multiple link managers and configure the sites to use a specific link manager? I've found the best way was to create a custom link manager that supports both scenarios. Then have a supporting config setting which defines whether the language is embedded. public class

bare bones MembershipProvider in sitecore

不羁岁月 提交于 2019-12-01 07:19:52
问题 I'm trying to implement a really really simple MembershipProvider for sitecore, but i'm not sure if it's too simple to actually work. Basically we already have a custom store for user data so i know that a customer MembershipProvider is the way to go. However my app will not log anyone in, a different part of the system is responsible for that. Also, it doesn't care who exactly is logged in, just whether they are or aren't (the who part is irrelevant in the content area of my site). So what

Sitecore Language Embedding multiple sites

拥有回忆 提交于 2019-12-01 06:47:25
问题 I'm looking to run two sites off one Sitecore install. The first site will only be in UK English therefore I won't include the language in the file path. languageEmbedding=never The second site will be in multiple languages and I need to include the language in the file path. languageEmbedding=always Is there a way I can define multiple link managers and configure the sites to use a specific link manager? 回答1: I've found the best way was to create a custom link manager that supports both