Quote:
Originally Posted by nievesidenshop
i'm having the same issue but on fresh install any fix or can anybody look a the script.
|
1.
Code:
$formname = Staff Application;
to
Code:
$formname = "Staff_Application";
Variables can't have spaces!!!
2.
Code:
// Name of the main template
$maintemplate = Puerto [BluePoison];
// Name of the answer template
$answertemplate = Puerto [BluePoison];
$maintemplate and $answertemplate - should be diference!!!! And whithout spaces!
3.
Check that you have this forum ID!
4.
Code:
$formtitle = Staff Application;
$posttitle = Staff Application;
$formpurpose = The.......
$normalquestion1 = Can you........
......
and so.....
the same as first
5.
Code:
if ($_REQUEST['action'] == '')
{
$_REQUEST['action'] = "form";
}
red - you form name! so it must be "Staff_Application"
6.
Code:
eval('$formsend = "' . fetch_template("$answertemplate") . '";');
must be your template name
7.
Code:
if ($_REQUEST['action'] == 'form')
{
// set message box width to usercp size
the same as 5.
8.
Code:
eval('print_output("' . fetch_template("$maintemplate") . '");');
the same sa 6
--------------------------------------------------------------
hmmmmm..... try to fix it