Hi, ive done the installation as stated and i get this error:
http://www.streetrace.co.uk/vbhome.php
bare in mind that vbhome is normally index.php - but i dont want to make it the homepage yet until i get it working... would appreciate any help.
PHP Code:
<?php
// +--------------------------------------------------------------
// | vbHome (lite) for vBulletin (Script by TECK)
// | + Main Page
// +--------------------------------------------------------------
///////////////////////////////////
// variables settings //
///////////////////////////////////
// set your root path
chdir("/home/fhlinux193/s/streetrace.co.uk/user/htdocs/forum");
require("./global.php");
// news forum
$newsforum="2";
// number of news listed
$newsposts="15";
// latest threads (maximum number of threads)
$maxthreads="3";
// latest threads (maximum title lenght)
$maxchars="25";
///////////////////////////////////
// end variables settings //
///////////////////////////////////
error_reporting( E_ALL & ~E_NOTICE );
$templatesused = 'home,home_articlebit,home_articlelink,home_welcomeguest,home_welcomeuser,';
$templatesused.= 'home_articlenocomment,home_articlecomment,home_userloggedin,home_userloggedout';
require_once( './global.php' );
// +--------------------------------------------------------------
// | Forum and poll permissions
// +--------------------------------------------------------------
I didnt paste the whole file because the only modification to the original index.php was the variables i included at the top.