Return to doc.sitecore.com

  Configuration file changes in Sitecore CMS and DMS 6.6.0 rev. 130214 compared to CMS and DMS 6.6.0 rev.130111.

This update requires you to make changes to the following files:

The clean config files for Sitecore CMS and DMS 6.6.0 rev. 130214 can be downloaded using the following links:

Changes to the Web.config file

The following changes have been made to the Web.config file of Sitecore CMS 6.6.0 rev. 130214 (Update-4) as compared to the Web.config file of Sitecore CMS 6.6.0 rev. 130111 (Update-3):

  1. In the <httpRequestBegin> pipeline, add a node for a new processor of type Sitecore.Pipelines.HttpRequest.EnsureServerUrl:
    <httpRequestBegin>
      <processor type="Sitecore.Pipelines.PreprocessRequest.CheckIgnoreFlag, Sitecore.Kernel"/>
      <processor type="Sitecore.Pipelines.HttpRequest.EnsureServerUrl,Sitecore.Kernel"/>
      <processor type="Sitecore.Pipelines.HttpRequest.StartMeasurements, Sitecore.Kernel"/>
    ...
  2. In the <scheduling> section set value for interval attribute equal to "00:15:00" for agent node with type Sitecore.Tasks.UrlAgent:
    <!-- Agent to retrieve a URL -->
    <agent type="Sitecore.Tasks.UrlAgent" method="Run" interval="00:15:00">
      <param desc="url">/sitecore/service/keepalive.html</param>
      <LogActivity>true</LogActivity>
    </agent>
  3. In the <processors><uiUpload> section, add the following processor at the beginning:
    <processor mode="on" type="Sitecore.Pipelines.Upload.CheckPermissions, Sitecore.Kernel"/>

Changes to the Sitecore.Analytics.config file

The following changes have been made to the Sitecore.Analytics.config file of Sitecore CMS 6.6.0 rev. 130214 (Update-4) as compared to the Sitecore.Analytics.config file of Sitecore CMS 6.6.0 rev. 130111 (Update-3):

  1. In the scheduling section, remove an agent node with type Sitecore.Analytics.Tasks.SubscriptionTask. After removing this node, the scheduling section will look like this in a default installation without customizations:
    <scheduling>
      <agent type="Sitecore.Analytics.Tasks.EmailReportsTask, Sitecore.Analytics" method="Run" interval="1:00:00">
        <DatabaseName>master</DatabaseName>
      </agent>
      <agent type="Sitecore.Analytics.Tasks.UpdateReportsSummaryTask, Sitecore.Analytics" method="Run" interval="00:30:00">
        <UpdateReportsSummaryAt>23:30:00</UpdateReportsSummaryAt>
      </agent>
    </scheduling>