HTTP Error 500.19 - Internal Server Error?

7

I'm moving a pretty basic site from Win 2003 to Win 2008 R2. The site is getting the error listed below. How can I diagnose this? I moved a number of other sites between these 2 servers & this is the only on that is receiving this error.

I've seen the other posts on this issue, but none of them list a solution that works for me.

HTTP Error 500.19 - Internal Server Error
Error Code 0x8007000d
Config Source -1: 0:

UPDATE:

Here are some notes on what I checked:
1) Permissions via Process Monitor. The config file is being opened correctly.
2) .Net version - Tried multiple settings 3) Integrated vs classic pipeline
4) change enabled 32 bit to true
5) I have not tried Aspnet_regiis.exe yet because the other sites on the new box work fine.

Next I'm going to try & comment out various items in the config file

asp.net
iis
asked on Stack Overflow May 29, 2012 by Mr Smith • edited Feb 6, 2013 by Mr Smith

6 Answers

5

I found the issue! The issue was the following line in web.config. I found this by commenting various things out in web.config until the site worked. But why is this line an issue on my new 2008 box with IIS 7.5? What isn't installed or configured?

Update:

This was the line I commented out. Could this have been related to IIS Feature Delegation? If config settings in the <system.webServer> element are causing this error then Feature Delegation settings could be the problem.

 <httpRuntime maxRequestLength="1000000"/>
answered on Stack Overflow May 29, 2012 by Mr Smith • edited May 31, 2012 by Mr Smith
5

run->cmd

run "c:\Windows\Microsoft.NET\Framework\v4.0.30319\aspnet_regiis.exe -i"

Run this command as a Administrator

answered on Stack Overflow Dec 26, 2014 by user2819666
4

You might have used the incorrect asp.net version. please check which version is selected from the iis application pool.

answered on Stack Overflow May 29, 2012 by Andriy Zakharko
2

you probebly change your NT password. Enter to IIS right click on your application -> manage application -> advanched Setting -> physical path credentials.

good luck

answered on Stack Overflow Feb 4, 2013 by Ziv.Ti
0

Please check this topic for possible answer: How do I resolve “HTTP Error 500.19 - Internal Server Error” on IIS7.0 Answer that is not marked as resolution helped to me. I was missing: Url Rewrite Module

answered on Stack Overflow May 5, 2014 by flamedmg • edited May 23, 2017 by Community
0

In my case the issue was solved by running VS2017 in admin mode.

answered on Stack Overflow Jun 7, 2017 by Jakob Lithner

User contributions licensed under CC BY-SA 3.0