sitecore6

Sitecore text search in PDF or Word documents

生来就可爱ヽ(ⅴ<●) 提交于 2019-12-05 02:53:23
问题 I want to find out if it's possible to configure Sitecore's Lucene search engine to index PDF or Word documents? I've looked on the Sitecore support site at this document (http://sdn.sitecore.net/upload/sitecore6/65/sitecore_search_and_indexing_sc60-65-a4.pdf) but it mentions creating a file crawler class which suggests to me that it's only possible to achieve this by writing custom code. If I do need to write custom code to do this, would I also need to have some API in order to extract the

Sitecore index rebuilding practices

落花浮王杯 提交于 2019-12-05 00:18:18
问题 In our sitecore project (6.6.0 rev. 130404), we have more than 2 million total sitecore items. We have several Lucene indexes (each for a subset of these items) configured. The issue we face is the time it takes to freshly rebuild these indexes. Specially with the Sitecore's QuickSearch index, it might take nearly a full day to rebuild that index, in addition to our custom indexes. What are the usual practices followed with maintenance of large sitecore indexes in day-to-day operations? How

Setting __Renderings field not shared in Sitecore consequences?

扶醉桌前 提交于 2019-12-04 23:37:49
问题 Does anyone have experience in setting the __Renderings field in Sitecore to not be shared? We are building a multi site-multi language solution and would need the (sub)layouts to be different in different languages. For example, the English language site could have a sublayout that the Swedish version of the same item does not have and all presentation components does not always have the same data source for different languages. A somewhat easy solution to this would be to simply uncheck

How to disable Sitecore Analytics entirely

点点圈 提交于 2019-12-04 22:31:27
问题 We are experiencing cpu problems on our production servers. After profiling with the jetbrains cpu profiler, we have noticed that some functions in the assembly Sitecore.Analytics were executed. This is somewhat strange because we have disabled all analytics related configuration in de config files. After looking into the /sitecore/admin/showconfig.aspx we noticed that there are still a lot of Sitecore.Analytics related configurations in this config while these are deactivated in our config

Web Forms for Marketers - Submit form data programmatically

泪湿孤枕 提交于 2019-12-04 18:54:30
I'm currently scoping whether or not to include Web Forms for Marketers on a project I'm currently working on. The web site will be a responsive design with a rich UI and so I would like to have full control over the rendering of the form, e.g. labels, input fields etc and would rather not have to modify the WFFM SitecoreSimpleFormAscx.ascx file or the associated css file. Is there currently any way, using C# code, to submit some form data to a Web Forms for Marketers form that is already created in Sitecore (assuming I have knowledge of all the fields)? The WFFM reference guide has a code

Considerations for Sitecore 6.4 architecture for multiple site, multiple language open ended solution?

自闭症网瘾萝莉.ら 提交于 2019-12-04 13:47:13
I'm looking at using the new cloning functionality of Sitecore 6.4 to help with reuse of components and content for a multiple site, multiple language solution. The basic idea is to create a central content repository within Sitecore (possibly in multiple languages) which could then be cloned to provide regional sites, each with their own selection of supported languages. The thinking behind this is to allow regions to easily replicate the content they require and take ownership of it. With cloning they would be able to edit the data where they required without affecting the source data,

Webforms for marketers form fields conditional visibility dynamically

你离开我真会死。 提交于 2019-12-04 12:23:55
问题 We are using WFFM for our landing pages creation. It is very easy for our marketing guys to use that. Now, we are looking at customizing them. For instance, we have the following requirement. On our form, we display country of residence, but when you select some countries, we want to display one more dropdown called state/province with the states. When user selects other countries, we have to hide the state/provice field. I am banging my head, how can I start implementing this. Can anyone of

How to implement Solr into Sitecore

左心房为你撑大大i 提交于 2019-12-04 10:54:17
问题 I have to implement Solr index into Sitecore and I would like to know what is the best approach? I looked at following approaches: Capture publish end event (or other events) and then push item to solr index Implement custom database crawler and get all changes from history table. Then using custom index push data to solr. Second approach sounds like a way to go (in my opinion). In this case do I need to create a new search index, or search manager? If anyone's done it before, can you point

Sitecore Database and App_Data Size

落爺英雄遲暮 提交于 2019-12-04 10:07:31
We have 5 relatively small sites running on top of Sitecore. The oldest has been hosted within the environment for 3 years. Currently both the master and web databases are roughly 8 GB a piece - surprising in size but also that they are nearly identical in size (I would expect the web database to be much smaller). Also surprising is the App_Data is over 50 GB in size (MediaCache is 15 GB and MediaFiles is 37 GB). Any ideas or suggestions on ways to reduce files on disc - even temporarily? Media Files - media items stored on disk (keep this folder) Media Cache - is where sitecore caches image

ASP .Net File Upload Maximum request length exceeded error

巧了我就是萌 提交于 2019-12-04 03:18:04
I have a simple ASP .Net file upload control on a page. I have following web.config settings <system.webServer> <security> <requestFiltering> <requestLimits maxAllowedContentLength="524288000" /> </requestFiltering> </security> </system.webServer> <system.web> <httpRuntime maxRequestLength="524288" executionTimeout="120000" /> </system.web> I am using IIS 7.5 on my dev box and IIS 7 on web server. If i upload file of size 7MB, it works fine. But when i upload file which is 10MB, it will throw following exception I have a simple ASP .Net file upload control on a page. I have following web