View previous topic :: View next topic |
Author |
Message |
susanarcher
Joined: 10 Nov 2006 Posts: 1
|
Posted: Sat Nov 11, 2006 11:23 am Post subject: argh! |
|
|
I have tried over and over - and have even redone the form totally from scratch and still get this message of error
The requested URL /<http://www.mycontactform.com/sendform/sendform.php> was not found on this server.
Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request
I REALLY want this to work! |
|
Back to top |
|
 |
mycontac Site Admin
Joined: 31 Dec 2003 Posts: 2860
|
Posted: Mon Nov 13, 2006 8:17 am Post subject: Reply |
|
|
For some reason, a bit of the form code on your webpage has been altered causing the form to malfunction. Find the bit of code that says:
Code: |
<form name="contactForm" method="post" action="<http://www.mycontactform.com/sendform/sendform.php>"> |
Replace the above code with the following:
Code: |
<form name="contactForm" method="post" action="http://www.mycontactform.com/sendform/sendform.php"> |
Thank should do the trick.
Sincerely,
Nick Ladd
myContactForm.com |
|
Back to top |
|
 |
|