buy tb500

Error : An ASP.NET setting has been detected that does not apply in Integrated managed pipeline mode

An ASP.NET setting has been detected that does not apply in Integrated managed pipeline mode. If
you see the above error, you can simply fix it by issuing the command below in command prompt:
%SystemRoot%\system32\inetsrv\appcmd migrate config “Path to the application/site/”.
Example:
%SystemRoot%\system32\inetsrv\appcmd migrate config “abc.com.my/abc/”.
Another solution is to edit web.config and then amended the code below:
<system.webServer>
<validation validateIntegratedModeConfiguration=”false” />
</system.webServer>

Leave a Reply