Copied to clipboard

Flag this post as spam?

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


  • Angelo 5 posts 115 karma points
    Sep 16, 2018 @ 12:36
    Angelo
    0

    Hello guys

    One of my Umbraco sites has a subdirectory site running in another app pool (it's an ordinary Windows Form website) and in version 7.7.1 the solution was to wrap <system.webServer> and <system.web> in <location path="." inheritInChildApplications="false" />.

    This solution was fine.

    Now, with version 7.12.2., the solution is also okay but the backend /umbraco now returns HTTP 500.12... if I remove these two <location /> it's the other site which fails...

    Is there a solution?

  • Angelo 5 posts 115 karma points
    Sep 16, 2018 @ 17:10
    Angelo
    100

    The solution is this:

    <validation validateIntegratedModeConfiguration="false" />
    

    must be moved outside the <location /> node. Then this node must be added (also outside the <location /> node):

       <system.webServer>
         <validation validateIntegratedModeConfiguration="false" />
      </system.webServer>
    
Please Sign in or register to post replies

Write your reply to:

Draft