Get your server issues fixed by our experts for a price starting at just 25 USD/Hour. Click here to register and open a ticket with us now!

Author Topic: ASP.NET setting has been detected that does not apply in Integrated managed pipe  (Read 4952 times)

0 Members and 1 Guest are viewing this topic.

sajugovind

  • Guest
The following error occurs, when browsing a website on Parallels Plesk server:

Code: [Select]
HTTP Error 500.24 - Internal Server Error
An ASP.NET setting has been detected that does not apply in Integrated managed pipeline mode.
0x80070032

The reason for the error is the website was designed in Classic pipeline mode, but an application pool assigned to the site is in Integrated pipeline mode which causes a conflict.


Resolution:

Disable validateIntegratedMode feature in "%plesk_vhosts%"\domain.tld\httpdocs\web.config by adding following section before </Configuration> tag

Code: [Select]
<system.webServer>
    <validation validateIntegratedModeConfiguration="false" />
</system.webServer>

Thank you,