Aug 11, 2011
tom

HTTP Error 500.19 – Internal Server Error in Windows 7 IIS

Question

I have a simple ASP.NET Web Site. When I try to run it on Windows 7 IIS, the following error message is displayed in my browser:

HTTP Error 500.19 – Internal Server
Error The requested page cannot be
accessed because the related
configuration data for the page is
invalid

How can I solve this problem?

Web Site Error

Answer

When you get this error it means that there’s probably something broken in your site’s web.config file. IIS7 is very helpful in these cases and will usually point you roughly where the problem lies.

For example, I’ve deliberately broken a web.config on a test site my making it malformed XML:

enter image description here

The areas highlighted in red are providing me with a hint as to what is broken.

Without seeing the full error message from your site it would be hard to speculate what is wrong other than that something is invalid in your web.config file (or perhaps a parent web.config).

Update:

Based on your update and the new screenshot comment out the line indicated in red in your web.config file, e.g.:

<!-- <modules runAllManagedModulesForAllRequests="true"/> -->

It looks like this setting has been locked somewhere on your machine, probably in the applicationHost.config file in C:WindowsSystem32inetsrvconfig.

You could try unlocking this setting to allow the web.config setting to be used by running the following on an Administrator command line:

appcmd.exe unlock config /section:system.webserver/modules /commit:apphost

Related posts:

  1. .htaccess 301 redirect produces 500 internal server error
  2. http 500 error on first visit only
  3. 500.19 on IIS 7, Cant log on locally
  4. PHP Woes – 500 Internal Server Error (brand new server)
  5. Disabling IIS 7.5 server error response for 5xx and 4xx HTTP status codes

Leave a comment