What to do when it throws out the following error in installation:
“There is a problem in the script folder. Please check your settings.php or the script folder.”
If you have uploaded your files to:
http://www.example.com/myformmanager/Then you should set the “script_folder” variable to:
define (“script_folder”,”myformmanager/”);
I want to have the form to clear all the fields after successful submission.
What to do?
1) Open form.php
2) Find the following line:$field_value = $_POST[just_clean($label).$field];
3) Replace it with this one:
if (($msg) && (!$error)) { $field_value = ””; } else { $field_value = $_POST[just_clean($label).$field]; }

380 Purchases
113 Comments