Hello,
I have a user that has a web form, the form calls
this was working well until the user changed the email address in the cs01.cgi
Now when the form gets filled out and then submited it gets the following error
The file structure has not changed, the file is there what I have tried to do is change the path for the "cs01.cgi"
to
with this I get the following error
One thing that looks a bit odd to me, is the way the email is written in the "cs01.cgi"
even if I enter the old email address it still gives me the same errors not very familiar with cgi nor perl.
Any help is much appreciated!!!
I have a user that has a web form, the form calls
Code:
<form ACTION="cs01.cgi" METHOD="POST">
this was working well until the user changed the email address in the cs01.cgi
Now when the form gets filled out and then submited it gets the following error
Code:
Not Found
The requested document was not found on this server.
The file structure has not changed, the file is there what I have tried to do is change the path for the "cs01.cgi"
to
Code:
<form ACTION="cgi-bin/cs01.cgi" METHOD="POST">
Code:
Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator to inform of the time the error occurred and of anything you might have done that may have caused the error.
One thing that looks a bit odd to me, is the way the email is written in the "cs01.cgi"
Code:
print MAIL "From: test.testing\@mycompany.com\n";
even if I enter the old email address it still gives me the same errors not very familiar with cgi nor perl.
Any help is much appreciated!!!