Handler “ExtensionlessUrlHandler-Integrated-4.0” has a bad module “ManagedPipelineHandler” in its module list

后端 未结 22 1812
北荒
北荒 2020-12-02 04:11

To be honest, I\'ve tried to turn a dirty trick on IIS and just when I thought that I was going to get away with it, I realized my workaround doesn\'t work. Here\'s what I\'

22条回答
  •  暖寄归人
    2020-12-02 04:18

    For me, removing WebDAV from my server caused the application to return a 503 Service Unavailable Error message when using PUT or DELETE, so I re-installed it back again. I also tried completely removing .NET Framework 4.5 and reinstalling it and also tried re-registering as suggested but to no avail.

    I was able to fix this by disabling WebDAV for the individual application pool, this stopped the 'bad module' error when using PUT or DELETE.

    Disable WebDAV for Individual App Pool:

    1. Click the affected application pool
    2. Find WebDAV Authoring Tools in the list
    3. Click to open it
    4. Click Disable WebDAV in the top right.

    Ta daaaa!

    I still left the remove items in my web.config file.

     
        
          
        
        
          
        
     
    

    This link is where I found the instructions but it's not very clear.

提交回复
热议问题