简体   繁体   中英

HTTP Error 500.19 - Internal Server Error localhost

newbie here, I am having an error in all of my projects and backups when executing my project visual studio 2012. Last week it was working fine and then the error came out. I am just using localhost.

these are solutions that i found and it still didn't work: :(

-In IIS Manager - Feature Delegation set HandlerMapping to Read/Write.

-Control Panel, Turn windows features on or off, Internet Information Services, World Wide Web Services, enable Application Development Features except CGI.

-I gave IIS_IUSRS full control to my project folder.

Any other suggestions?

error message

HTTP Error 500.19 - Internal Server Error

The requested page cannot be accessed because the related configuration data for the page is invalid.

Detailed Error Information:

Module IIS Web Core

Notification BeginRequest

Handler Not yet determined

Error Code 0x80070003

Config Error Cannot read configuration file

Config File \\?\\C: -- web.config

Requested URL http://localhost:49926/Home.aspx

Physical Path --

Logon Method Not yet determined

Logon User Not yet determined

Request Tracing Directory
C:\\Users\\john\\Documents\\IISExpress\\TraceLogFiles\\ --

Config Source: -1: 0:

my [Web.config] file

<?xml version="1.0" encoding="utf-8"?>
<!--
  For more information on how to configure your ASP.NET application, please visit
  http://go.microsoft.com/fwlink/?LinkId=169433
  -->
<configuration>
  <system.web>
    <compilation debug="true" targetFramework="4.5">
    </compilation>
    <httpRuntime targetFramework="4.5" />

    <pages>
        <controls>
           <add tagPrefix="ajaxToolkit" assembly="AjaxControlToolkit" namespace="AjaxControlToolkit" /></controls>
    </pages>
  </system.web>  

  <appSettings>
    <add key="ValidationSettings:UnobtrusiveValidationMode" value="None" />
  </appSettings>
  <connectionStrings>
    <add name="connectionString" connectionString="DELETED" />
  </connectionStrings>

</configuration>

根据我的说法,您的应用程序池中应该有问题。.只需更改并选择适当的version 4.5池即可解决您的服务器问题。.如果仍然无法解决您的问题,请告知。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM