2
votes

I m getting "405 Method Not Allowed" error for my angularjs application running on PHP over iis 8.5

These are my header request...

Access-Control-Allow-Headers:Content-Type, Accept
Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS
Access-Control-Allow-Origin:*
Allow:GET, HEAD, OPTIONS, TRACE

What i can see is that post is missing in "Allow:GET, HEAD, OPTIONS, TRACE"

Can any one guide me how to enable POST request in IIS 8.5.

Chrome screen shot

enter image description here

SOLVED

i finally solve this.... I guess the issue was in MY URL - api/login which is called in POST... i changes that URL with api/login/checklogin.php and executed POST request.... it works.......

SUPER THANKS TO LIN for his guidance and 
http://stackoverflow.com always gives you the best.... THANKS ALL..
1
This is not a issue depending on your cors setup. CORS doesnt effect the http status code.lin
how to correct it... i tried every method on IIS 8.5 but NO success till now... do you have any helpful link to share..Asad Ali Khan

1 Answers

2
votes

CORS do not effect the HTTP Status code > HTTP status codes effect cors. Taken from this answer you should allow all the HTTP-Request types in IIS you need.

For IIS 8.x try:

You could follow up this guide or make the following change in your applicationhost.configfile for your instance:

<system.webServer>
    <handlers>
        <remove name="ExtensionlessUrlHandler-Integrated-4.0" />
        <remove name="OPTIONSVerbHandler" />
        <remove name="TRACEVerbHandler" />
        <add name="ExtensionlessUrlHandler-Integrated-4.0" path="*." verb="*" type="System.Web.Handlers.TransferRequestHandler" preCondition="integratedMode,runtimeVersionv4.0" />
    </handlers>
</system.webServer>

Also ensure you removed WebDAV module from web.config (if installed and enabled):

<system.webServer>
  <modules>
    <remove name="WebDAVModule"/>
  </modules>
  <handlers>
    <remove name="WebDAV"/>
  </handlers>
</system.webServer>