Copied to clipboard

Flag this post as spam?

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


  • Thomas Kahn 602 posts 506 karma points
    Nov 10, 2009 @ 13:51
    Thomas Kahn
    0

    Moving an Umbraco v3 web to a Win 2008 (IIS7) server

    Hi!

    We're upgrading our development server and are going from Win 2003 to Win 2008.

    We have successfully moved an Umbraco v4 site to the new server, but when we tried with an Umbraco v3.0.6 site it only works partly. Specifically I'm having problems understanding:

    1) How to configure directory URL's

    2) How to get AJAX to work

    The application is running in Classic .NET AppPool (I don't think anything else is possible for v3 sites).

    Thanks in advance!

    /Thomas Kahn

  • Thomas Kahn 602 posts 506 karma points
    Nov 10, 2009 @ 14:36
    Thomas Kahn
    0

    After a bit of tinkering I have it working!

    Apart from running the application in Classic .NET AppPool you have to do the following two changes:

    1. Setup wildcard application mapping according to this instruction (Wildcard script mapping in IIS 7 classic pipeline mode). This enables directory URL's
    2. Add the assemby binding that Petr Snobelt has posted way back:

     

    <!-- added by petr snobelt - fix for .net 3.5 -->
    <runtime>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
    <dependentAssembly>
    <assemblyIdentity name="System.Web.Extensions" publicKeyToken="31bf3856ad364e35" />
    <bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="3.5.0.0" />
    </dependentAssembly>
    <dependentAssembly>
    <assemblyIdentity name="System.Web.Extensions.Design" publicKeyToken="31bf3856ad364e35" />
    <bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="3.5.0.0" />
    </dependentAssembly>
    </assemblyBinding>
    </runtime>

    If I do these things, apart from all the other obvious stuff like giving NETWORK SERVICE the correct permissions on catalogs and set up the database and database connection correctly, it seems like I have the Umbraco v3 web up and running!

    /Thomas

  • Thomas Kahn 602 posts 506 karma points
    Nov 10, 2009 @ 14:38
    Thomas Kahn
    0

    And the instructions I'm talking about are these:

    http://learn.iis.net/page.aspx/508/wildcard-script-mapping-and-iis-7-integrated-pipeline/

    Look under the heading Wildcard script mapping in IIS 7 classic pipeline mode

    /Thomas

Please Sign in or register to post replies

Write your reply to:

Draft