Copied to clipboard

Flag this post as spam?

This post will be reported to the moderators as potential spam to be looked at


  • Peter Duncanson 430 posts 1360 karma points c-trib
    Jun 07, 2012 @ 14:49
    Peter Duncanson
    3

    Just had a nasty 30 mins fixing this one. Seems the package include te x86 processor DLL's but we run with x64. No biggie. Just need to download the latest ELMAH DLL's for x64 and drop those in.

    Additionally the version of MySql.Data.dll used was different to that used by Umbraco so needed to add this to the web.config:

     

    <runtime>

      <!-- Other dependancy elements here -->
          <dependentAssembly>
            <assemblyIdentity name="MySQL.Data" publicKeyToken="c5687fc88969c44d" />
            <bindingRedirect oldVersion="5.1.2.2" newVersion="6.1.3.0" />
          </dependentAssembly>      
        </assemblyBinding>
      </runtime>

    To get the right newVersion value right click on the new MySql.Data.dll and select properties -> Details. The publicKeyToken should be given in the horrid stacktrace you'll be getting too or in the Event Log if you get the same issue.

    Hope that helps someone.

     

  • Murray Roke 503 posts 966 karma points c-trib
    Jun 10, 2012 @ 11:42
    Murray Roke
    0

    Sorry, you had to find that out the hard way. Thanks for sharing. I've added a note to the overview page, hopefully the next person affected will read it ;-)

Please Sign in or register to post replies

Write your reply to:

Draft