Return to doc.sitecore.com

  Config file changes in Sitecore CMS and DMS 7.2 rev. 140314 compared to CMS and DMS 7.1 rev. 140228

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

The clean configuration files for Sitecore CMS and DMS 7.2 rev. 140314 can be downloaded using the following links:

Changes to the App_Config\Include\Sitecore.Buckets.config

The following changes have been made to the App_Config\Include\Sitecore.Buckets.config file of Sitecore CMS 7.2 rev. 140314 (Update-1) as compared to the App_Config\Include\Sitecore.Buckets.config file of Sitecore CMS 7.2 rev. 140228 (Initial Release).

  1. In the <pipelines> section, add the following node (you can add it at any place in the section, but in a clean Sitecore installation the new node is placed between the and nodes):
    <getQueryState>
      <processor type="Sitecore.Buckets.Pipelines.GetQueryState.CommandStateProcessor, Sitecore.Buckets"/>
    </getQueryState>
  2. In the <controlSources> section, add a new source, at the end of the section:
    <source mode="on" namespace="Sitecore.Buckets.Controls" assembly="Sitecore.Buckets"/>
    After this change, the section looks like this in a clean Sitecore installation:
    <controlSources>
      <source mode="on" namespace="Sitecore.Buckets.FieldTypes" assembly="Sitecore.Buckets" prefix="contentExtension"/>
      <source mode="on" namespace="Sitecore.Buckets.Controls" assembly="Sitecore.Buckets"/>
    </controlSources>
  3. Add the new <ui><references> section, after the <controlSources> section:
    <ui>
      <references>
        <reference id="Sitecore.Buckets">/bin/Sitecore.Buckets.dll</reference>
      </references>
    </ui>
  4. In the <settings> section, add the following setting, at the top of the section:
    <!-- ITEM BUCKETS ENABLED
         This setting specifies whether or not the Item Buckets feature is enabled.
         Default value: true
    -->
    <setting name="BucketConfiguration.ItemBucketsEnabled" value="true"/>