T O P I C R E V I E W |
jerryf |
Posted - 08 Jun 2008 : 22:20:38 I bought the PHP Forms To Go, designed a simple page with a form to input data and went to Forms To Go and processed the page. I connected a link to the php file and exported and published the project. when I naviagated to the form everything worked fine, I went to the order page and filled in the name and email and confirming email and press the submit button. I the web hosting service Im using in on a unix machine and I get the error message
Method Not Allowed The requested method POST is not allowed for the URL /ORDER_FILE.htm. Apache/1.3.37 Server at softwareatwork.com Port 80
I'm supposed to have PHP support on the server.. Is this my error or something to do with the PHP script or something on the host server...
Thanks Jerry |
2 L A T E S T R E P L I E S (Newest First) |
Martin1 |
Posted - 09 Jun 2008 : 12:31:33 You could always change post to get but I am not sure this will work.
Give it a try or contact your host because there is no reason (security) post shouldn't work.
Martin |
joneq |
Posted - 09 Jun 2008 : 03:18:51 Take a look around here
http://www.google.com/search?q=The+requested+method+POST+is+not+allowed
BTW all php configs are different for each host and the same for the server settings/apache
I think your problem has to do with the method= "post" and the fact that it is a .htm file
click on the first site in the google link and scroll to the last post. quote: Ah, sounds like you were sending a POST request to an HTML file. Which you would get POST request not allowed. You can't send POST requests to HTML files, only GET requests
|