I'm getting the following error when I attempt to submit a form, using the POST method:
The requested method POST is not allowed for the URL /~webuser/form1.php.
The Apache access_log shows the following errors:
[10/Feb/2002:23:27:07 -0800] "POST /~webuser/form1.php HTTP/1.1" 405 248
I'm attempting to POST to a PHP document, from an HTML form.
<form action="main.php" method="post">
The error / status code "405" indicates that the method specified in the Request-Line is not allowed for the resource identified by the Request-URI.
I believe the problem is with one of my webserver settings, some type of permissions error, but haven't been able to figure out what it is...
So, Any help would be much appreciated.
TIA
Joe F.
The requested method POST is not allowed for the URL /~webuser/form1.php.
The Apache access_log shows the following errors:
[10/Feb/2002:23:27:07 -0800] "POST /~webuser/form1.php HTTP/1.1" 405 248
I'm attempting to POST to a PHP document, from an HTML form.
<form action="main.php" method="post">
The error / status code "405" indicates that the method specified in the Request-Line is not allowed for the resource identified by the Request-URI.
I believe the problem is with one of my webserver settings, some type of permissions error, but haven't been able to figure out what it is...
So, Any help would be much appreciated.
TIA
Joe F.