Valid for Sitecore 6.x
  How to Upgrade an Installation
Prev Next

To upgrade a previous Sitecore CMS 6 version to this release:  

To install the update on the existing Sitecore CMS 6.0.0 installation, follow the instructions below: 

  1. Backup the site. 
  2. Install the update package using the Installation Wizard available via the Sitecore desktop link Sitecore » Development Tools » Installation Wizard. Choose "Overwrite" every time when prompted.
    Note: Installing of the package may take long time.
  3. If you are upgrading from version earlier than Sitecore 6.0.0 Update rev. 081222, remove the rest.aspx file from the /webroot/sitecore/ folder.
  4. Update the web.config file. See the web.config changes page for details.
  5. Add the following line to /App_Config/FieldTypes.config:
    <fieldType name="TreelistEx" type="Sitecore.Data.Fields.MultilistField,Sitecore.Kernel" />
  6. If you are using SQL databases run the following script for your master database:
    CREATE NONCLUSTERED INDEX [ndxBlobId] ON [dbo].[Blobs]
    (
        [BlobId] ASC
    )
    WITH (SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, IGNORE_DUP_KEY = OFF, ONLINE = OFF) ON [PRIMARY]

    It will add index to the Blobs table and thus improve the performance when working with media stored in database. Such index already exists for both the ‘web’ and the ‘core’ databases, so you do not need to run the script on them.
  7. Unzip and run SitecoreCounters.exe script. 
  8. Delete Website/App_Config/Include/CheckIgnoreFlag.config if it exists.
  9. Clear your browser's cache. For instance, in Internet Explorer this is done via the menu Tools » Internet Options » Browsing History » Delete » Delete Temporary Internet Files.

Prev Next