I put chat.php where you said and still get an error, but on line 47 now. I only have 45 lines of code in that file, could the error be in my template? I don't understand this, all the code works fine when I have this file in the bbs directory, but I get an error when I move it out of the bbs directory into my chat directory. Will post my code below.
PHP Code:
<?php
// ####################### SET PHP ENVIRONMENT ###########################
error_reporting(E_ALL & ~E_NOTICE);
// #################### DEFINE IMPORTANT CONSTANTS #######################
define('NO_REGISTER_GLOBALS', 1);
define('THIS_SCRIPT', 'Chat'); // change this depending on your filename
// ################### PRE-CACHE TEMPLATES AND DATA ######################
// get special phrase groups
$phrasegroups = array(
);
// get special data templates from the datastore
$specialtemplates = array(
);
// pre-cache templates used by all actions
$globaltemplates = array(
'Chat',
);
// pre-cache templates used by specific actions
$actiontemplates = array(
);
// ######################### REQUIRE BACK-END ############################
chdir('/path/to/bbs/directory');
require_once('/path/to/bbs/directory/global.php');
// #######################################################################
// ######################## START MAIN SCRIPT ############################
// #######################################################################
$navbits = array();
$navbits["chat.php"] = 'Chat Page';
$navbits = construct_navbits($navbits);
eval('print_output("' . fetch_template('Chat') . '");');
?>