Return to doc.sitecore.com

  Config file changes in Sitecore CMS and DMS 7.1 rev. 140324 compared to CMS and DMS 7.1 rev. 140130.

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

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

Changes to Web.config 

The following changes have been made to the web.config file of Sitecore CMS 7.1 rev. 140324 (Update-2) as compared to the web.config file of Sitecore CMS 7.1 rev. 140130:

  1. In the <sitecore><settings> section, add the following nodes, after the "Media.MediaLinkPrefix" node:
    <!--  MEDIA - MEDIA LINK SERVER URL
                The server URL to use when Sitecore generates media links and when Media.AlwaysIncludeServerUrl is set to true. This is typically
                used when all media is served from one or more dedicated instances or when your solution is configured to store Sitecore media on
                a content delivery network.
                The URL must use this format: <protocol>://<hostname>, for example http://example.com
                If the value is not set, the URL of the current server will be used.
                Default value: ""
          -->
          <setting name="Media.MediaLinkServerUrl" value="" />
  2. In the <sitecore><settings> section, add the following three nodes:
    <!--  SEARCH CLASSIC SEARCH MAX RESULTS
                Specifies the maximum number of results to return when using the Search application (classic search) to search.
                If the value is set to 0, all the items that match the query are returned.
                Default value: 15
          -->
          <setting name="Search.ClassicSearch.MaxResults" value="15" />
          <!--  SEARCH CONTENT TREE SEARCH MAX RESULTS
                Specifies the maximum number of results to return when using the search panel above the content tree to search.
                If the value is set to 0, all the items that match the query are returned.
                Default value: 25
          -->
          <setting name="Search.ContentTreeSearch.MaxResults" value="25" />
          <!--  SEARCH INSTANT SEARCH MAX RESULTS
                Specifies the maximum number of results to return when using
                the instant search panel (on the status bar in the Sitecore Desktop) to search.
                If the value is set to 0, all the items that match the query are returned.
                Default value: 15
          -->
          <setting name="Search.InstantSearch.MaxResults" value="15" />


Changes to Sitecore.ItemWebApi.config

  1. In the <itemWebApiRequest> pipeline, add a new processor of type CheckParameters before the existing processors:
    <processor type="Sitecore.ItemWebApi.Pipelines.Request.CheckParameters, Sitecore.ItemWebApi"/>