Quote:
Originally posted by andrew67
Thanks but it no work... I can't find where it calls global.php in Vbportal anywhere but I tried adding require("nicks.php"); to both my index and my header.php files to no avail..
|
I can't imagine vBportal functioning without requiring global.php, but if it's non-existent then find:
PHP Code:
error_reporting(7);
And below it add:
PHP Code:
chdir("./forums");
require("nicks.php");
Change "forums" to whatever your forums directory is called.