Search code examples
sitecoresitecore8sitecore8.1

Sitecore 8.1 Upgrade Media section broken


I upgraded sitecore from 7.0 to 8.1. The only real problem I have ran into is the media section is broken and the images appear broken on the site itself.

The weird part and I can upload and download the media items. It is broken in both chrome and firefox.

Thanks![enter image description here]1 Update

 <encodeNameReplacements>
      <replace mode="on" find="&amp;" replaceWith=",-a-," />
      <replace mode="on" find="?" replaceWith=",-q-," />
      <replace mode="on" find="/" replaceWith=",-s-," />
      <replace mode="on" find="*" replaceWith=",-w-," />
      <replace mode="on" find="." replaceWith=",-d-," />
      <replace mode="on" find=":" replaceWith=",-c-," />
    </encodeNameReplacements>

Solution

  • Fixed it. It turns out the way sitecore is configured has changed a lot between 7-8.1. By adding

     <sitecore configSource="App_Config\Sitecore.config" />
    

    and removing the old section fixed the problem.