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
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
add a comment |
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
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
add a comment |
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
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
php iis
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
add a comment |
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
add a comment |
3 Answers
3
active
oldest
votes
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.
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
add a comment |
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.
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
add a comment |
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
add a comment |
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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.
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
add a comment |
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.
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
add a comment |
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.
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.
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
add a comment |
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
add a comment |
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.
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
add a comment |
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.
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
add a comment |
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.
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.
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
add a comment |
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
add a comment |
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
add a comment |
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
add a comment |
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
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
answered Jan 31 at 11:00
JH Francois YangJH Francois Yang
112
112
add a comment |
add a comment |
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
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