Alright..basically, you've got to define some variable so you dont catch any errors from your foums generic files:
PHP Code:
// ####################### SET PHP ENVIRONMENT ###########################
error_reporting(E_ALL & ~E_NOTICE);
// #################### DEFINE IMPORTANT CONSTANTS #######################
define('THIS_SCRIPT', 'file_name_here');
define('NO_REGISTER_GLOBALS', 1);
and change
PHP Code:
define('THIS_SCRIPT', 'file_name_here');
to the actual name of your file, minus the extension (.php, .php3, etc.).
now you'll need to cache the templates your forum uses (even if you dont want to use it), otherwise, you'll also get some errors.
PHP Code:
// ################### 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();
// pre-cache templates used by specific actions
$actiontemplates = array();
Then require your main file to make sure all sessions catch for this certain page and you don't get logged out:
PHP Code:
// ######################### REQUIRE BACK-END ############################
// assuming your forums folder is in a seperate direcotry than the area you have made.
require_once('../forum/global.php');
hope this helps