sitecore7.5

How to clear cache on Sitecore 7.5 delivery server?

牧云@^-^@ 提交于 2020-01-07 03:48:13
问题 I have 2 CD servers using Sitecore 7.5 that have the actual Sitecore interfaces turned off. Is there any way for me to clear the caches on the 2 CD servers? I know that there is probably a way I could write code to do it, but I would be surprised that there is no way to do it out of the box. Thanks, Corey 回答1: As @Marek mentioned, you have to have your html cache clearing specified for your site in the web.config. Since you're trying to clear the cache on the CD servers, you have to have this

Updating Sitecore Social Profile into an external system

只谈情不闲聊 提交于 2019-12-23 03:59:10
问题 We are using the Sitecore Social Connected Module version 3.0 with Sitecore 7.5. Everything is working fine, in the sense that we log the user in and see the profile information stored into MongoDb. However, there is a requirement to also store the profile information into a separate system. I've successfully been able to do this by tapping into the following social module events: <event name="social:connector:user:loggedin"> </event> <event name="social:connector:user:socialprofileattached">

How do I control the priority of nested queries in Sitecore ContentSearch with the Solr Provider?

倖福魔咒の 提交于 2019-12-10 15:54:49
问题 Version Details: I am working with Sitecore 7.5 build 141003, using Solr v4.7 as the search engine/indexing server. I am also using the standard Sitecore Solr provider with no custom indexers. Target Goal: I am using Sitecore ContentSearch LINQ with PredicateBuilder to compile some flexible and nested queries. Currently, I need to search within a specific "Root item", while excluding templates with "folder" in their name, also excluding items with "/testing" in their path. At some point the

Sitecore 7.5 MVC and HttpContext.Session.Timeout set to 1 min

夙愿已清 提交于 2019-11-30 15:49:01
问题 I have the session timeout set to 20min but when I try to access this value from action I'm getting 1min instead. Web.Config settings are: <sessionState mode="InProc" cookieless="false" timeout="20"> <authentication mode="None"> <forms name=".ASPXAUTH" cookieless="UseCookies" timeout="20" /> </authentication> In Global.asax.cs in Session_Start value of timeout is 20min : HttpContext.Current.Session.Timeout But in action in my controller is set to 1min : System.Web.HttpContext.Current.Session

Sitecore 7.5 MVC and HttpContext.Session.Timeout set to 1 min

梦想的初衷 提交于 2019-11-30 14:49:37
I have the session timeout set to 20min but when I try to access this value from action I'm getting 1min instead. Web.Config settings are: <sessionState mode="InProc" cookieless="false" timeout="20"> <authentication mode="None"> <forms name=".ASPXAUTH" cookieless="UseCookies" timeout="20" /> </authentication> In Global.asax.cs in Session_Start value of timeout is 20min : HttpContext.Current.Session.Timeout But in action in my controller is set to 1min : System.Web.HttpContext.Current.Session.Timeout HttpContext.Session.Timeout I've found that when I remove SitecoreHttpModule which is of type (