Thank you all for the help. I still cannot get it to work and I apologize for my lack of knowledge.
The form is filled out on the index and contact us pages of the site. The form is located in a folder called form and it looks like it goes to a php file named index.
Here's the code for that index page inside of the folder "form":
$script_root = './';
$referring_server = 'http://www.mywebsite.com, scripts';
$allow_empty_referer = 'yes'; // (yes, no)
$language = 'en'; // (see folder 'languages')
$ip_banlist = '';
$ip_address_count = '0';
$ip_address_duration = '48';
$show_limit_errors = 'yes'; // (yes, no)
$log_messages = 'no'; // (yes, no)
$text_wrap = '65';
$show_error_messages = 'yes';
$attachment = 'no'; // (yes, no)
$attachment_files = 'jpg, gif,png, zip, txt, pdf, doc, ppt, tif, bmp, mdb, xls, txt';
$attachment_size = 100000;
$path['logfile'] = $script_root . 'logfile/logfile.txt';
$path['upload'] = $script_root . 'upload/'; // chmod 777 upload
$path['templates'] = $script_root . 'templates/';
$file['default_html'] = 'form.tpl.html';
$file['default_mail'] = 'mail.tpl.txt';
/*************************************************
** Add further words, text, variables and stuff
** that you want to appear in the templates here.
** The values are displayed in the HTML output and
** the e-mail.
*************************************************/
$add_text = array(
'txt_additional' => 'Additional', // {txt_additional}
'txt_more' => 'More' // {txt_more}
);
/*************************************************
** Do not edit below this line - Ende der Einstellungen
*************************************************/
/*************************************************
** Send safety signal to included files
*************************************************/
define('IN_SCRIPT', 'true');
/*************************************************
** Load formmail script code
*************************************************/
include($script_root . 'inc/formmail.inc.php')
?>
Is this the line where I need to make the changes? And if so, can anyone tell me what to change based on the info I have given?
Thanks!