pagekeeper
11-14-2004, 12:11 AM
<?php
// ####################### SET PHP ENVIRONMENT ###########################
error_reporting(E_ALL & ~E_NOTICE);
// ######################### REQUIRE BACK-END ############################
chdir('/home/website/public_html/'); //edit path to your vbulletin directory
require('./global.php');
// #################### DEFINE IMPORTANT CONSTANTS #######################
define('NO_REGISTER_GLOBALS', 1);
define('THIS_SCRIPT', 'chat');
eval('$HTML = "' . fetch_template('chat') . '";');
$navbits = array();
$navbits[$parent] = 'Chat';
$navbits = construct_navbits($navbits);
eval('$navbar = "' . fetch_template('navbar') . '";');
eval('print_output("' . fetch_template('GENERIC_SHELL') . '");');
?>
the above code works on a normal page such as, forums/index.php but the images wont appear when i put it in forums/chat/index.php any ideas on why ?
// ####################### SET PHP ENVIRONMENT ###########################
error_reporting(E_ALL & ~E_NOTICE);
// ######################### REQUIRE BACK-END ############################
chdir('/home/website/public_html/'); //edit path to your vbulletin directory
require('./global.php');
// #################### DEFINE IMPORTANT CONSTANTS #######################
define('NO_REGISTER_GLOBALS', 1);
define('THIS_SCRIPT', 'chat');
eval('$HTML = "' . fetch_template('chat') . '";');
$navbits = array();
$navbits[$parent] = 'Chat';
$navbits = construct_navbits($navbits);
eval('$navbar = "' . fetch_template('navbar') . '";');
eval('print_output("' . fetch_template('GENERIC_SHELL') . '");');
?>
the above code works on a normal page such as, forums/index.php but the images wont appear when i put it in forums/chat/index.php any ideas on why ?