ASP.NET: HTTP Error 500.19 – Internal Server Error 0x8007000d

后端 未结 14 757

I am replicating web application deployment and found several issues related to HTTP Error 500.19. My machine is running Windows 7 while the wo

相关标签:
14条回答
  • 2020-11-28 05:26

    Error 0x8007000d means URL rewriting module (referenced in web.config) is missing or proper version is not installed.

    Just install URL rewriting module via web platform installer.

    I recommend to check all dependencies from web.config and install them.

    0 讨论(0)
  • 2020-11-28 05:28

    When trying to set up a .NET Core 1.0 website I got this error, and tried everything else I could find with no luck, including checking the web.config file, IIS_IUSRS permissions, IIS URL rewrite module, etc. In the end, I installed DotNetCore.1.0.0-WindowsHosting.exe from this page: https://www.microsoft.com/net/download and it started working right away.

    Specific link to download: https://go.microsoft.com/fwlink/?LinkId=817246

    0 讨论(0)
  • 2020-11-28 05:28

    I had this problem with a brand new web service. Solved it by adding read-only access for Everyone on Properties->Security for the folder that the service was in.

    0 讨论(0)
  • 2020-11-28 05:32

    In my case, because I had reinstalled iis, I needed to register iis with dot net 4 using this command:

    C:\Windows\Microsoft.NET\Framework\v4.0.30319\aspnet_regiis.exe -i
    
    0 讨论(0)
  • 2020-11-28 05:34

    Kind of late to the party here, but I have just been struggling with the exact same issue (symptoms) and cursing the lack of error detail reporting. It worked fine on IIS 8+ machines but Win 7 got these INSTANT HTTP 500.19 errors. For me it was as silly as having an unsupported configuration element in the config file:

     <applicationInitialization doAppInitAfterRestart="true">
      <add initializationPage="/" />
    </applicationInitialization>
    

    So while running old web.config files worked fine, I just diffed them and started chopping away at new blocks until I got the page to start loading. Had I seen this as an answer I would have gone this route immediately as I knew none of the popular solutions were relevant. So there you go :)

    0 讨论(0)
  • 2020-11-28 05:36

    I understand that this error can occur because of many different reasons. In my case it was because I uninstalled WSUS service from Server Roles and the whole IIS went down. After doing a bit of research I found that uninstalling WSUS removes a few dlls which are used to do http compression. Since those dlls were missing and the IIS was still looking for them I did a reset using the following command in CMD:

    appcmd set config -section:system.webServer/httpCompression /-[name='xpress']
    

    Bingo! The problem is sorted now. Dont forget to run it as an administrator. You might also need to do "iisreset" as well. Just in case.

    Hope it helps others. Cheers

    0 讨论(0)
提交回复
热议问题