Return to doc.sitecore.com

  Web.config changes in Sitecore CMS 6.4.1 rev. 101221 compared to Sitecore CMS 6.4.0 rev. 101124

Select the link below to download the Web.config file of the default Sitecore CMS 6.4.1 rev. 101221 installation:

Below is the list of changes made to the Web.config file of Sitecore CMS 6.4.1 rev. 101221 as compared to the Web.config file of Sitecore CMS 6.4.0 rev. 101124:

  1. The site named "testing" is not used by Sitecore and should be removed from the <sites> section (unless you are using it for custom purposes in your solution).
  2. Check if your web.config file contains an "EventQueue.PersistStampInterval" and an "EventQueue.PersistStampMaxAge" setting.
    If not, add the following settings to <settings> section:
    <!--  EVENT QUEUE PERSIST STAMP INTERVAL
          The minimum interval between saving the event queue's last processed event stamp.
          Default value: 00:00:10 (10 seconds)
    -->
    <setting name="EventQueue.PersistStampInterval" value="00:00:10" />
    <!--  EVENT QUEUE PERSIST STAMP MAX AGE
          The maximum age of remote events to be replayed at application startup.
          When Sitecore starts, it will check this setting. Remote events that are older than this age will not be replayed.
          Default value: 00:10:00 (10 minutes)
    -->
    <setting name="EventQueue.PersistStampMaxAge" value="00:10:00" />