Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

HTTP Error 500.23 - Internal Server Error

Hi im trying to deploy my ASP:NET Web Site on the network in Windows 7 Enterprise im getting this Error:

HTTP Error 500.23 - Internal Server Error
An ASP.NET setting has been detected that does not apply in Integrated managed pipeline   
mode.

I made some search like changing the the application pool from "Integrated" to "Classic". it didnt realy help i become another Error:

HTTP Error 404.2 Error - Not found
ISAPI- and CGI-Restrictions

Can any one help point me in the right direction?

like image 409
H_79 Avatar asked Jun 03 '13 12:06

H_79


1 Answers

Add into web.config for HTTP Error 500.23 - Internal Server Error An ASP.NET setting has been detected that does not apply in Integrated managed pipeline
mode.

<system.webServer>
    <validation validateIntegratedModeConfiguration="false"/>
  </system.webServer>
like image 133
Müslüm ÖZTÜRK Avatar answered Oct 23 '22 09:10

Müslüm ÖZTÜRK