Skip to content
Arxisos edited this page Mar 20, 2012 · 1 revision

IIS

If you are running IIS 7.5 you may need to disable the WebDAV module to enable PUT and DELETE verbs. You can do this globally through IIS or locally through a web.config.

<system.webServer>
  <modules runAllManagedModulesForAllRequests="true">
    <remove name="WebDAVModule" />
  </modules>
</system.webServer>

Clone this wiki locally