gday im trying to create an email form, everything looks good when i open the page but opun submitting i get this error,,, I have set read write permission
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator, webmaster@trackcare.com.au and inform them of the time the error occurred, and anything you might have done that may have caused the error.
More information about this error may be available in the server error log.
Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
thanks
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
This is a server related issue.
When you click the submit button you are doing the following:
1.) Automatically sending the form data as input variables to the processor.php file (the path to the processor.php file must be correct).
2.) The server must be able to find trhe php file (read/write permissions on the file and folder). It must recognize it as a php script file (file extension and php tags within the file). And it must know how to handle php files (PHP script engine installed on the server).
If all of these things are in place then the form works. The fact that your form does not work means one of these things are missing. Log files are a good place to start but some things won't appear in the log if certain server settings/features are not implemented.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
gday im trying to create an email form, everything looks good when i open the page but opun submitting i get this error,,, I have set read write permission
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator, webmaster@trackcare.com.au and inform them of the time the error occurred, and anything you might have done that may have caused the error.
More information about this error may be available in the server error log.
Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
thanks
This is a server related issue.
When you click the submit button you are doing the following:
1.) Automatically sending the form data as input variables to the processor.php file (the path to the processor.php file must be correct).
2.) The server must be able to find trhe php file (read/write permissions on the file and folder). It must recognize it as a php script file (file extension and php tags within the file). And it must know how to handle php files (PHP script engine installed on the server).
If all of these things are in place then the form works. The fact that your form does not work means one of these things are missing. Log files are a good place to start but some things won't appear in the log if certain server settings/features are not implemented.