How do I enable PUT requests in Azure?How to enable PUT and DELETE requests on Azure?Could not get POST to work on Azure WebsiteAngular Put request not working with Laravel 5.3 hosted on azureLaravel 5.5 Error 405 (Method Not Allowed) XHR PUT METHOD now working on Azure ServerHow can I prevent SQL injection in PHP?Detecting request type in PHP (GET, POST, PUT or DELETE)How do I get a YouTube video thumbnail from the YouTube API?How Do You Parse and Process HTML/XML in PHP?Maximum request length exceeded.How do I check if a string contains a specific word?Azure REST PUT or DELETE returns 401HTTP Error 500.19 and error code : 0x80070021fine-uploader azure originator in request instead of endpointLaravel 5.5 Error 405 (Method Not Allowed) XHR PUT METHOD now working on Azure Server

Convert seconds to minutes

Why didn't Boeing produce its own regional jet?

Implication of namely

Do Iron Man suits sport waste management systems?

Avoiding the "not like other girls" trope?

Car headlights in a world without electricity

Should I tell management that I intend to leave due to bad software development practices?

Could the museum Saturn V's be refitted for one more flight?

How obscure is the use of 令 in 令和?

Which ISO should I use for the cleanest image?

Processor speed limited at 0.4 Ghz

What does the same-ish mean?

Use of noexpand in the implementation of TextOrMath for eTeX

How badly should I try to prevent a user from XSSing themselves?

Mathematica command that allows it to read my intentions

How can I prove that a state of equilibrium is unstable?

OP Amp not amplifying audio signal

Why is the sentence "Das ist eine Nase" correct?

Obtaining database information and values in extended properties

Standard deduction V. mortgage interest deduction - is it basically only for the rich?

Bullying boss launched a smear campaign and made me unemployable

Is it possible to map the firing of neurons in the human brain so as to stimulate artificial memories in someone else?

Does Dispel Magic work on Tiny Hut?

Send out email when Apex Queueable fails and test it



How do I enable PUT requests in Azure?


How to enable PUT and DELETE requests on Azure?Could not get POST to work on Azure WebsiteAngular Put request not working with Laravel 5.3 hosted on azureLaravel 5.5 Error 405 (Method Not Allowed) XHR PUT METHOD now working on Azure ServerHow can I prevent SQL injection in PHP?Detecting request type in PHP (GET, POST, PUT or DELETE)How do I get a YouTube video thumbnail from the YouTube API?How Do You Parse and Process HTML/XML in PHP?Maximum request length exceeded.How do I check if a string contains a specific word?Azure REST PUT or DELETE returns 401HTTP Error 500.19 and error code : 0x80070021fine-uploader azure originator in request instead of endpointLaravel 5.5 Error 405 (Method Not Allowed) XHR PUT METHOD now working on Azure Server













3















I'm building a REST API on Azure, but when I try to access an endpoint via the PUT method I get a HTTP 405 "Method Not Allowed" status along with an IIS error message:




The page you are looking for cannot be displayed because an invalid
method (HTTP verb) is being used.




How do I enable the PUT method, and other methods that may be blocked by default by Azure's default config settings?



I tried adding a web.config file to the root of my application with allowUnlisted set to true on the verbs element:



<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.webServer>
<security>
<requestFiltering>
<verbs applyToWebDAV="false" allowUnlisted="true" />
</requestFiltering>
</security>
</system.webServer>
</configuration>


This changed nothing.



I'm an open source guy, so the world of IIS is very unfamiliar to me. Any help is appreciated.



Thanks!










share|improve this question
























  • What language are you using? PHP, Node.js, ASP/ASP.NET or Python?

    – cory-fowler
    Aug 6 '14 at 22:19











  • I'm using PHP (Laravel 4).

    – dtrenz
    Aug 6 '14 at 22:24















3















I'm building a REST API on Azure, but when I try to access an endpoint via the PUT method I get a HTTP 405 "Method Not Allowed" status along with an IIS error message:




The page you are looking for cannot be displayed because an invalid
method (HTTP verb) is being used.




How do I enable the PUT method, and other methods that may be blocked by default by Azure's default config settings?



I tried adding a web.config file to the root of my application with allowUnlisted set to true on the verbs element:



<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.webServer>
<security>
<requestFiltering>
<verbs applyToWebDAV="false" allowUnlisted="true" />
</requestFiltering>
</security>
</system.webServer>
</configuration>


This changed nothing.



I'm an open source guy, so the world of IIS is very unfamiliar to me. Any help is appreciated.



Thanks!










share|improve this question
























  • What language are you using? PHP, Node.js, ASP/ASP.NET or Python?

    – cory-fowler
    Aug 6 '14 at 22:19











  • I'm using PHP (Laravel 4).

    – dtrenz
    Aug 6 '14 at 22:24













3












3








3








I'm building a REST API on Azure, but when I try to access an endpoint via the PUT method I get a HTTP 405 "Method Not Allowed" status along with an IIS error message:




The page you are looking for cannot be displayed because an invalid
method (HTTP verb) is being used.




How do I enable the PUT method, and other methods that may be blocked by default by Azure's default config settings?



I tried adding a web.config file to the root of my application with allowUnlisted set to true on the verbs element:



<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.webServer>
<security>
<requestFiltering>
<verbs applyToWebDAV="false" allowUnlisted="true" />
</requestFiltering>
</security>
</system.webServer>
</configuration>


This changed nothing.



I'm an open source guy, so the world of IIS is very unfamiliar to me. Any help is appreciated.



Thanks!










share|improve this question
















I'm building a REST API on Azure, but when I try to access an endpoint via the PUT method I get a HTTP 405 "Method Not Allowed" status along with an IIS error message:




The page you are looking for cannot be displayed because an invalid
method (HTTP verb) is being used.




How do I enable the PUT method, and other methods that may be blocked by default by Azure's default config settings?



I tried adding a web.config file to the root of my application with allowUnlisted set to true on the verbs element:



<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.webServer>
<security>
<requestFiltering>
<verbs applyToWebDAV="false" allowUnlisted="true" />
</requestFiltering>
</security>
</system.webServer>
</configuration>


This changed nothing.



I'm an open source guy, so the world of IIS is very unfamiliar to me. Any help is appreciated.



Thanks!







php iis azure azure-web-sites






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Aug 7 '14 at 21:54









BenV

8,95854481




8,95854481










asked Aug 6 '14 at 21:49









dtrenzdtrenz

479612




479612












  • What language are you using? PHP, Node.js, ASP/ASP.NET or Python?

    – cory-fowler
    Aug 6 '14 at 22:19











  • I'm using PHP (Laravel 4).

    – dtrenz
    Aug 6 '14 at 22:24

















  • What language are you using? PHP, Node.js, ASP/ASP.NET or Python?

    – cory-fowler
    Aug 6 '14 at 22:19











  • I'm using PHP (Laravel 4).

    – dtrenz
    Aug 6 '14 at 22:24
















What language are you using? PHP, Node.js, ASP/ASP.NET or Python?

– cory-fowler
Aug 6 '14 at 22:19





What language are you using? PHP, Node.js, ASP/ASP.NET or Python?

– cory-fowler
Aug 6 '14 at 22:19













I'm using PHP (Laravel 4).

– dtrenz
Aug 6 '14 at 22:24





I'm using PHP (Laravel 4).

– dtrenz
Aug 6 '14 at 22:24












3 Answers
3






active

oldest

votes


















9














Add the following to the web.config in the system.webServer element:



<handlers>
<remove name="PHP54_via_FastCGI" />
<add name="PHP54_via_FastCGI" path="*.php" verb="GET, PUT, POST, HEAD, OPTIONS, TRACE, PROPFIND, PROPPATCH, MKCOL, COPY, MOVE, LOCK, UNLOCK" modules="FastCgiModule" scriptProcessor="D:Program Files (x86)PHPv5.4php-cgi.exe" resourceType="Either" requireAccess="Script" />
</handlers>


This works for the built in versions of PHP, the current default is PHP 5.4, but if you have selected PHP 5.3 or PHP 5.5 you will need to modify the path of the php-cgi handler.






share|improve this answer


















  • 1





    I've added these solutions to the Microsoft Azure Websites Cheatsheet.. microsoftazurewebsitescheatsheet.info

    – cory-fowler
    Aug 6 '14 at 23:12











  • This worked! THANK YOU so much! I've been blocked by this for hours. I've bookmarked the cheatsheet, which is also incredibly helpful. Shame that MS doesn't allow HTTP method config in the portal, seems obvious enough.

    – dtrenz
    Aug 7 '14 at 15:49











  • Doesn't seem to work with PHP 7.2 in 2018.

    – TCB13
    Nov 23 '18 at 15:55


















2














Add this to your web.config/system.webServer:



<handlers>
<remove name="ExtensionlessUrl-Integrated-4.0" />
<add name="ExtensionlessUrl-Integrated-4.0"
path="*."
verb="GET,HEAD,POST,DEBUG,DELETE,PUT"
type="System.Web.Handlers.TransferRequestHandler"
preCondition="integratedMode,runtimeVersionv4.0" />
</handlers>


or instead of specifying what verbs are allowed, say verb="*" to allow all the verbs.






share|improve this answer


















  • 1





    This did not work for me.

    – dtrenz
    Aug 7 '14 at 15:48






  • 3





    No, it wouldn't for PHP. That is for Asp.Net. But you never mentioned php in the question.

    – trailmax
    Aug 7 '14 at 16:23


















1














To complete the answer given by cory_flower you should change 54 by the version that is given,



Exemple: 7.2 gives:



<handlers>
<remove name="PHP72_via_FastCGI" />
<add name="PHP72_via_FastCGI" path="*.php" verb="GET, PUT, POST, HEAD, OPTIONS, TRACE, PROPFIND, PROPPATCH, MKCOL, COPY, MOVE, LOCK, UNLOCK" modules="FastCgiModule" scriptProcessor="D:Program Files (x86)PHPv5.4php-cgi.exe" resourceType="Either" requireAccess="Script" />
</handlers>


Pretty trivial but just for info






share|improve this answer























    Your Answer






    StackExchange.ifUsing("editor", function ()
    StackExchange.using("externalEditor", function ()
    StackExchange.using("snippets", function ()
    StackExchange.snippets.init();
    );
    );
    , "code-snippets");

    StackExchange.ready(function()
    var channelOptions =
    tags: "".split(" "),
    id: "1"
    ;
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function()
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled)
    StackExchange.using("snippets", function()
    createEditor();
    );

    else
    createEditor();

    );

    function createEditor()
    StackExchange.prepareEditor(
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader:
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    ,
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    );



    );













    draft saved

    draft discarded


















    StackExchange.ready(
    function ()
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f25170826%2fhow-do-i-enable-put-requests-in-azure%23new-answer', 'question_page');

    );

    Post as a guest















    Required, but never shown

























    3 Answers
    3






    active

    oldest

    votes








    3 Answers
    3






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    9














    Add the following to the web.config in the system.webServer element:



    <handlers>
    <remove name="PHP54_via_FastCGI" />
    <add name="PHP54_via_FastCGI" path="*.php" verb="GET, PUT, POST, HEAD, OPTIONS, TRACE, PROPFIND, PROPPATCH, MKCOL, COPY, MOVE, LOCK, UNLOCK" modules="FastCgiModule" scriptProcessor="D:Program Files (x86)PHPv5.4php-cgi.exe" resourceType="Either" requireAccess="Script" />
    </handlers>


    This works for the built in versions of PHP, the current default is PHP 5.4, but if you have selected PHP 5.3 or PHP 5.5 you will need to modify the path of the php-cgi handler.






    share|improve this answer


















    • 1





      I've added these solutions to the Microsoft Azure Websites Cheatsheet.. microsoftazurewebsitescheatsheet.info

      – cory-fowler
      Aug 6 '14 at 23:12











    • This worked! THANK YOU so much! I've been blocked by this for hours. I've bookmarked the cheatsheet, which is also incredibly helpful. Shame that MS doesn't allow HTTP method config in the portal, seems obvious enough.

      – dtrenz
      Aug 7 '14 at 15:49











    • Doesn't seem to work with PHP 7.2 in 2018.

      – TCB13
      Nov 23 '18 at 15:55















    9














    Add the following to the web.config in the system.webServer element:



    <handlers>
    <remove name="PHP54_via_FastCGI" />
    <add name="PHP54_via_FastCGI" path="*.php" verb="GET, PUT, POST, HEAD, OPTIONS, TRACE, PROPFIND, PROPPATCH, MKCOL, COPY, MOVE, LOCK, UNLOCK" modules="FastCgiModule" scriptProcessor="D:Program Files (x86)PHPv5.4php-cgi.exe" resourceType="Either" requireAccess="Script" />
    </handlers>


    This works for the built in versions of PHP, the current default is PHP 5.4, but if you have selected PHP 5.3 or PHP 5.5 you will need to modify the path of the php-cgi handler.






    share|improve this answer


















    • 1





      I've added these solutions to the Microsoft Azure Websites Cheatsheet.. microsoftazurewebsitescheatsheet.info

      – cory-fowler
      Aug 6 '14 at 23:12











    • This worked! THANK YOU so much! I've been blocked by this for hours. I've bookmarked the cheatsheet, which is also incredibly helpful. Shame that MS doesn't allow HTTP method config in the portal, seems obvious enough.

      – dtrenz
      Aug 7 '14 at 15:49











    • Doesn't seem to work with PHP 7.2 in 2018.

      – TCB13
      Nov 23 '18 at 15:55













    9












    9








    9







    Add the following to the web.config in the system.webServer element:



    <handlers>
    <remove name="PHP54_via_FastCGI" />
    <add name="PHP54_via_FastCGI" path="*.php" verb="GET, PUT, POST, HEAD, OPTIONS, TRACE, PROPFIND, PROPPATCH, MKCOL, COPY, MOVE, LOCK, UNLOCK" modules="FastCgiModule" scriptProcessor="D:Program Files (x86)PHPv5.4php-cgi.exe" resourceType="Either" requireAccess="Script" />
    </handlers>


    This works for the built in versions of PHP, the current default is PHP 5.4, but if you have selected PHP 5.3 or PHP 5.5 you will need to modify the path of the php-cgi handler.






    share|improve this answer













    Add the following to the web.config in the system.webServer element:



    <handlers>
    <remove name="PHP54_via_FastCGI" />
    <add name="PHP54_via_FastCGI" path="*.php" verb="GET, PUT, POST, HEAD, OPTIONS, TRACE, PROPFIND, PROPPATCH, MKCOL, COPY, MOVE, LOCK, UNLOCK" modules="FastCgiModule" scriptProcessor="D:Program Files (x86)PHPv5.4php-cgi.exe" resourceType="Either" requireAccess="Script" />
    </handlers>


    This works for the built in versions of PHP, the current default is PHP 5.4, but if you have selected PHP 5.3 or PHP 5.5 you will need to modify the path of the php-cgi handler.







    share|improve this answer












    share|improve this answer



    share|improve this answer










    answered Aug 6 '14 at 23:11









    cory-fowlercory-fowler

    3,0721327




    3,0721327







    • 1





      I've added these solutions to the Microsoft Azure Websites Cheatsheet.. microsoftazurewebsitescheatsheet.info

      – cory-fowler
      Aug 6 '14 at 23:12











    • This worked! THANK YOU so much! I've been blocked by this for hours. I've bookmarked the cheatsheet, which is also incredibly helpful. Shame that MS doesn't allow HTTP method config in the portal, seems obvious enough.

      – dtrenz
      Aug 7 '14 at 15:49











    • Doesn't seem to work with PHP 7.2 in 2018.

      – TCB13
      Nov 23 '18 at 15:55












    • 1





      I've added these solutions to the Microsoft Azure Websites Cheatsheet.. microsoftazurewebsitescheatsheet.info

      – cory-fowler
      Aug 6 '14 at 23:12











    • This worked! THANK YOU so much! I've been blocked by this for hours. I've bookmarked the cheatsheet, which is also incredibly helpful. Shame that MS doesn't allow HTTP method config in the portal, seems obvious enough.

      – dtrenz
      Aug 7 '14 at 15:49











    • Doesn't seem to work with PHP 7.2 in 2018.

      – TCB13
      Nov 23 '18 at 15:55







    1




    1





    I've added these solutions to the Microsoft Azure Websites Cheatsheet.. microsoftazurewebsitescheatsheet.info

    – cory-fowler
    Aug 6 '14 at 23:12





    I've added these solutions to the Microsoft Azure Websites Cheatsheet.. microsoftazurewebsitescheatsheet.info

    – cory-fowler
    Aug 6 '14 at 23:12













    This worked! THANK YOU so much! I've been blocked by this for hours. I've bookmarked the cheatsheet, which is also incredibly helpful. Shame that MS doesn't allow HTTP method config in the portal, seems obvious enough.

    – dtrenz
    Aug 7 '14 at 15:49





    This worked! THANK YOU so much! I've been blocked by this for hours. I've bookmarked the cheatsheet, which is also incredibly helpful. Shame that MS doesn't allow HTTP method config in the portal, seems obvious enough.

    – dtrenz
    Aug 7 '14 at 15:49













    Doesn't seem to work with PHP 7.2 in 2018.

    – TCB13
    Nov 23 '18 at 15:55





    Doesn't seem to work with PHP 7.2 in 2018.

    – TCB13
    Nov 23 '18 at 15:55













    2














    Add this to your web.config/system.webServer:



    <handlers>
    <remove name="ExtensionlessUrl-Integrated-4.0" />
    <add name="ExtensionlessUrl-Integrated-4.0"
    path="*."
    verb="GET,HEAD,POST,DEBUG,DELETE,PUT"
    type="System.Web.Handlers.TransferRequestHandler"
    preCondition="integratedMode,runtimeVersionv4.0" />
    </handlers>


    or instead of specifying what verbs are allowed, say verb="*" to allow all the verbs.






    share|improve this answer


















    • 1





      This did not work for me.

      – dtrenz
      Aug 7 '14 at 15:48






    • 3





      No, it wouldn't for PHP. That is for Asp.Net. But you never mentioned php in the question.

      – trailmax
      Aug 7 '14 at 16:23















    2














    Add this to your web.config/system.webServer:



    <handlers>
    <remove name="ExtensionlessUrl-Integrated-4.0" />
    <add name="ExtensionlessUrl-Integrated-4.0"
    path="*."
    verb="GET,HEAD,POST,DEBUG,DELETE,PUT"
    type="System.Web.Handlers.TransferRequestHandler"
    preCondition="integratedMode,runtimeVersionv4.0" />
    </handlers>


    or instead of specifying what verbs are allowed, say verb="*" to allow all the verbs.






    share|improve this answer


















    • 1





      This did not work for me.

      – dtrenz
      Aug 7 '14 at 15:48






    • 3





      No, it wouldn't for PHP. That is for Asp.Net. But you never mentioned php in the question.

      – trailmax
      Aug 7 '14 at 16:23













    2












    2








    2







    Add this to your web.config/system.webServer:



    <handlers>
    <remove name="ExtensionlessUrl-Integrated-4.0" />
    <add name="ExtensionlessUrl-Integrated-4.0"
    path="*."
    verb="GET,HEAD,POST,DEBUG,DELETE,PUT"
    type="System.Web.Handlers.TransferRequestHandler"
    preCondition="integratedMode,runtimeVersionv4.0" />
    </handlers>


    or instead of specifying what verbs are allowed, say verb="*" to allow all the verbs.






    share|improve this answer













    Add this to your web.config/system.webServer:



    <handlers>
    <remove name="ExtensionlessUrl-Integrated-4.0" />
    <add name="ExtensionlessUrl-Integrated-4.0"
    path="*."
    verb="GET,HEAD,POST,DEBUG,DELETE,PUT"
    type="System.Web.Handlers.TransferRequestHandler"
    preCondition="integratedMode,runtimeVersionv4.0" />
    </handlers>


    or instead of specifying what verbs are allowed, say verb="*" to allow all the verbs.







    share|improve this answer












    share|improve this answer



    share|improve this answer










    answered Aug 6 '14 at 22:12









    trailmaxtrailmax

    23.3k1292199




    23.3k1292199







    • 1





      This did not work for me.

      – dtrenz
      Aug 7 '14 at 15:48






    • 3





      No, it wouldn't for PHP. That is for Asp.Net. But you never mentioned php in the question.

      – trailmax
      Aug 7 '14 at 16:23












    • 1





      This did not work for me.

      – dtrenz
      Aug 7 '14 at 15:48






    • 3





      No, it wouldn't for PHP. That is for Asp.Net. But you never mentioned php in the question.

      – trailmax
      Aug 7 '14 at 16:23







    1




    1





    This did not work for me.

    – dtrenz
    Aug 7 '14 at 15:48





    This did not work for me.

    – dtrenz
    Aug 7 '14 at 15:48




    3




    3





    No, it wouldn't for PHP. That is for Asp.Net. But you never mentioned php in the question.

    – trailmax
    Aug 7 '14 at 16:23





    No, it wouldn't for PHP. That is for Asp.Net. But you never mentioned php in the question.

    – trailmax
    Aug 7 '14 at 16:23











    1














    To complete the answer given by cory_flower you should change 54 by the version that is given,



    Exemple: 7.2 gives:



    <handlers>
    <remove name="PHP72_via_FastCGI" />
    <add name="PHP72_via_FastCGI" path="*.php" verb="GET, PUT, POST, HEAD, OPTIONS, TRACE, PROPFIND, PROPPATCH, MKCOL, COPY, MOVE, LOCK, UNLOCK" modules="FastCgiModule" scriptProcessor="D:Program Files (x86)PHPv5.4php-cgi.exe" resourceType="Either" requireAccess="Script" />
    </handlers>


    Pretty trivial but just for info






    share|improve this answer



























      1














      To complete the answer given by cory_flower you should change 54 by the version that is given,



      Exemple: 7.2 gives:



      <handlers>
      <remove name="PHP72_via_FastCGI" />
      <add name="PHP72_via_FastCGI" path="*.php" verb="GET, PUT, POST, HEAD, OPTIONS, TRACE, PROPFIND, PROPPATCH, MKCOL, COPY, MOVE, LOCK, UNLOCK" modules="FastCgiModule" scriptProcessor="D:Program Files (x86)PHPv5.4php-cgi.exe" resourceType="Either" requireAccess="Script" />
      </handlers>


      Pretty trivial but just for info






      share|improve this answer

























        1












        1








        1







        To complete the answer given by cory_flower you should change 54 by the version that is given,



        Exemple: 7.2 gives:



        <handlers>
        <remove name="PHP72_via_FastCGI" />
        <add name="PHP72_via_FastCGI" path="*.php" verb="GET, PUT, POST, HEAD, OPTIONS, TRACE, PROPFIND, PROPPATCH, MKCOL, COPY, MOVE, LOCK, UNLOCK" modules="FastCgiModule" scriptProcessor="D:Program Files (x86)PHPv5.4php-cgi.exe" resourceType="Either" requireAccess="Script" />
        </handlers>


        Pretty trivial but just for info






        share|improve this answer













        To complete the answer given by cory_flower you should change 54 by the version that is given,



        Exemple: 7.2 gives:



        <handlers>
        <remove name="PHP72_via_FastCGI" />
        <add name="PHP72_via_FastCGI" path="*.php" verb="GET, PUT, POST, HEAD, OPTIONS, TRACE, PROPFIND, PROPPATCH, MKCOL, COPY, MOVE, LOCK, UNLOCK" modules="FastCgiModule" scriptProcessor="D:Program Files (x86)PHPv5.4php-cgi.exe" resourceType="Either" requireAccess="Script" />
        </handlers>


        Pretty trivial but just for info







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Jan 31 at 11:00









        JH Francois YangJH Francois Yang

        112




        112



























            draft saved

            draft discarded
















































            Thanks for contributing an answer to Stack Overflow!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid


            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.

            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f25170826%2fhow-do-i-enable-put-requests-in-azure%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            How to get text form Clipboard with JavaScript in Firefox 56?How to validate an email address in JavaScript?How do JavaScript closures work?How do I remove a property from a JavaScript object?How do you get a timestamp in JavaScript?How do I copy to the clipboard in JavaScript?How do I include a JavaScript file in another JavaScript file?Get the current URL with JavaScript?How to replace all occurrences of a string in JavaScriptHow to check whether a string contains a substring in JavaScript?How do I remove a particular element from an array in JavaScript?

            Can't initialize raids on a new ASUS Prime B360M-A motherboard2019 Community Moderator ElectionSimilar to RAID config yet more like mirroring solution?Can't get motherboard serial numberWhy does the BIOS entry point start with a WBINVD instruction?UEFI performance Asus Maximus V Extreme

            List of MPs elected to the English parliament in 1640 (April) Contents List of constituencies and members See also Notes References Navigation menueNational Archives – The Glynde Place ArchivesCobbett's Parliamentary history of England, from the Norman Conquest in 1066 to the year 1803'Aldermen in Parliament', The Aldermen of the City of London: Temp. Henry III – 1912onepage&q&f&#61, false 229