Hi,
We are trying to migrate data from a test server to a production Win2k server sp4, IIS5.
When I use a post method on a form (either html or php page type), I receive an error stating the page can't be found. This will happen even when the page is being submitted to itself.
If I use a get method on the same form the page displays correctly.
Since this happens both on php and html pages I assume it is an incorrect IIS setting. BTW, the very simple code for the test page I am using follows.
Any suggestions you can provide would be greatly appreciated.
Michael
We are trying to migrate data from a test server to a production Win2k server sp4, IIS5.
When I use a post method on a form (either html or php page type), I receive an error stating the page can't be found. This will happen even when the page is being submitted to itself.
If I use a get method on the same form the page displays correctly.
Since this happens both on php and html pages I assume it is an incorrect IIS setting. BTW, the very simple code for the test page I am using follows.
Code:
<html>
<head>
<title>Test Form</title>
</head>
<body>
<form action="" method="post">
<table>
<tr><td>Name</td><td><input type="text" name="name0"/></td></tr>
<tr><td>Age</td><td><input type="text" name="age0"/></td></tr>
</table>
<input type="submit" name="SubmitMe" value="Submitted" />
</form>
</body>
</html>
Michael