Don't miss out Virtual Happy Hour this Friday (April 26).

Try our conversational search powered by Generative AI!

IMPORTANT!

This hotfix should only be applied if you are affected by the problem described. This hotfix only applies to sites that run EPiServer CMS 5 SP1.

Problem fixed with this hotfix:

  • Issue # 8099 - Error while parsing a date in Norwegian format.

Installation Instructions

  1. Extract the attached zip file.
  2. Backup the bin folder of the site where the hotfix is about to be applied.
  3. Copy the extracted files to the bin folder.
  4. Register the assemblies in the GAC using the GACUTIL tool (part of the framework SDK).

    gacutil /i ElektroPost.Licensing.dll
    gacutil /i EPiServer.BaseLibrary.dll
    gacutil /i EPiServer.Configuration.dll
    gacutil /i EPiServer.dll
    gacutil /i EPiServer.Events.dll
    gacutil /i EPiServer.Implementation.dll
    gacutil /i EPiServer.Lucene.dll
    gacutil /i EPiServer.Wsrp.dll
    gacutil /i EPiServer.XForms.dll
  5. Add a binding redirect configuration element for each new assembly to the web.config of the site.
      <runtime>
        <assemblyBinding>
          <dependentAssembly>
            <assemblyIdentity name="ElektroPost.Licensing" publicKeyToken="8fe83dea738b45b7" culture="neutral" />
            <bindingRedirect oldVersion="4.0.0.0-5.65535.65535.65535" newVersion="5.1.422.123" />
          </dependentAssembly>
          <dependentAssembly>
            <assemblyIdentity name="EPiServer.BaseLibrary" publicKeyToken="8fe83dea738b45b7" culture="neutral" />
            <bindingRedirect oldVersion="4.0.0.0-5.65535.65535.65535" newVersion="5.1.422.123" />
          </dependentAssembly>
          <dependentAssembly>
            <assemblyIdentity name="EPiServer.Configuration" publicKeyToken="8fe83dea738b45b7" culture="neutral" />
            <bindingRedirect oldVersion="4.0.0.0-5.65535.65535.65535" newVersion="5.1.422.123" />
          </dependentAssembly>
          <dependentAssembly>
            <assemblyIdentity name="EPiServer" publicKeyToken="8fe83dea738b45b7" culture="neutral" />
            <bindingRedirect oldVersion="4.0.0.0-5.65535.65535.65535" newVersion="5.1.422.123" />
          </dependentAssembly>
          <dependentAssembly>
            <assemblyIdentity name="EPiServer.Events" publicKeyToken="8fe83dea738b45b7" culture="neutral" />
            <bindingRedirect oldVersion="4.0.0.0-5.65535.65535.65535" newVersion="5.1.422.123" />
          </dependentAssembly>
          <dependentAssembly>
            <assemblyIdentity name="EPiServer.Implementation" publicKeyToken="8fe83dea738b45b7" culture="neutral" />
            <bindingRedirect oldVersion="4.0.0.0-5.65535.65535.65535" newVersion="5.1.422.123" />
          </dependentAssembly>
          <dependentAssembly>
            <assemblyIdentity name="EPiServer.Lucene" publicKeyToken="8fe83dea738b45b7" culture="neutral" />
            <bindingRedirect oldVersion="4.0.0.0-5.65535.65535.65535" newVersion="5.1.422.123" />
          </dependentAssembly>
          <dependentAssembly>
            <assemblyIdentity name="EPiServer.Wsrp" publicKeyToken="8fe83dea738b45b7" culture="neutral" />
            <bindingRedirect oldVersion="4.0.0.0-5.65535.65535.65535" newVersion="5.1.422.123" />
          </dependentAssembly>
          <dependentAssembly>
            <assemblyIdentity name="EPiServer.XForms" publicKeyToken="8fe83dea738b45b7" culture="neutral" />
            <bindingRedirect oldVersion="4.0.0.0-5.65535.65535.65535" newVersion="5.1.422.123" />
          </dependentAssembly>
        </assemblyBinding>
      </runtime>