Aug 15th, 2011, 7:55 AM
Hi Dave,
Since you need to get this fixed quickly, I'd do a simple band-aid: turn down the error reporting to display only genuine errors. Add this line to your /global/config.php file:
By default, Form Tools main releases always have that value set. Beta versions have it cranked up to 2047 so all minor warnings and notices like this are displayed.
All the problems you listed were minor: an "email" var not being defined, which ouputs the error, which prevents the form redirecting properly because content had already been sent to the browser, etc.
(And no worries about sounding impatient at all! I know what a pain it can be to try to resolve these things when time is at a minimum!)
- Ben
Since you need to get this fixed quickly, I'd do a simple band-aid: turn down the error reporting to display only genuine errors. Add this line to your /global/config.php file:
PHP Code:
$g_default_error_reporting = 1;
By default, Form Tools main releases always have that value set. Beta versions have it cranked up to 2047 so all minor warnings and notices like this are displayed.
All the problems you listed were minor: an "email" var not being defined, which ouputs the error, which prevents the form redirecting properly because content had already been sent to the browser, etc.
(And no worries about sounding impatient at all! I know what a pain it can be to try to resolve these things when time is at a minimum!)
- Ben