ERROR PAGE SETTINGS
$MY_error_page
This is the HTML TEMPLATE file that will be accessed when an error occurs upon processing the script.
** The Page selected below should be uploaded to your cgi-bin.
$MY_error_page = "error.html";
Note: There is more information on configuring this HTML TEMPLATE page in section (1A-IV) of this readme file.
$use_html_error
This enables you to turn ON or OFF the "Personalized Required Error Template Module"
SET
$use_html_error = "2";
to turn "OFF" the personalized html form error page template
SET
$use_html_error = "1";
to use the personalized html form error page template (DEFAULT)
$HTML_error_page{""}
Simply enter all the possible data files to which you want to send form data.
Example Config:
$HTML_error_page{"1"} = "formerror.html";
$HTML_error_page{"2"} = "nexterror.html";
etc...
Example: if you want to use "formerror.html" as your REQUIRED ERROR FORM TEMPLATE:
<input name="error_page" type="hidden" value="1">
-OR- if you want to use "nexterror.html" as your REQUIRED ERROR FORM TEMPLATE:
<input name="error_page" type="hidden" value="2">
Note, you can have as many "REQUIRED ERROR FORM TEMPLATE's" entries as you would like in bizmail.cgi IF YOU LEAVE THIS FIELD OUT OF THE FORM IT WILL DEFAULT TO formerror.html
You can read more on the "Personalized Required Error Template Module" in (1D) of this readme file.