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...
Upgrading to 7.12.2
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?
The solution is this:
must be moved outside the
<location />
node. Then this node must be added (also outside the<location />
node):is working on a reply...