Sorry if this is really basic for most...I am building my website with Dreamweaver and I want to add the form I created into one of my templates to edit - perhaps change some of the styling - before uploading to server.
How do I accomplish this?
Thanks
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I installed this using the cpanel of my webhost (vervehosting.com) and seemed to generate the form with no problem (which is awesome) but when I test it, I get an internal server error. It says:
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator, webmaster@jawbreakerevents.com 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.
It's located here. This is supposed to be easy and I have no idea what I managed to screw up in this easy install. The form is here:
Change all permissions that are 777 to 755 ( or 775 but try 755 first ) in your created form directory as hosted servers ( most ) do not allow 777 permissions on certain files .
And for future form creation edit copyfunc.php in your formgenerator directory
change :
mkdir($wto, 0777);
to
mkdir($wto, 0755);
and change
chmod($flto, 0777);
to
chmod($flto, 0755);
This will create future forms with the correct permissions
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Sorry if this is really basic for most...I am building my website with Dreamweaver and I want to add the form I created into one of my templates to edit - perhaps change some of the styling - before uploading to server.
How do I accomplish this?
Thanks
I installed this using the cpanel of my webhost (vervehosting.com) and seemed to generate the form with no problem (which is awesome) but when I test it, I get an internal server error. It says:
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator, webmaster@jawbreakerevents.com 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.
It's located here. This is supposed to be easy and I have no idea what I managed to screw up in this easy install. The form is here:
http://jawbreakerevents.com/contest/use/RapidRingGirlRegistration/form1.html
Any help would be sincerely appreciated. I know I've got to be missing something simple.
Thank you.
Renee
Change all permissions that are 777 to 755 ( or 775 but try 755 first ) in your created form directory as hosted servers ( most ) do not allow 777 permissions on certain files .
And for future form creation edit copyfunc.php in your formgenerator directory
change :
mkdir($wto, 0777);
to
mkdir($wto, 0755);
and change
chmod($flto, 0777);
to
chmod($flto, 0755);
This will create future forms with the correct permissions