Quote:
Originally Posted by Opserty
Theres no need to leave PHP for just single lines use echo() instead.
As for your problem...it does seem odd. Make sure you are logged in to start with. Then do a var_dump() of $vbulletin to check that global.php is being included correctly. Also make sure you didn't just use require_once(...); but used the proper chdir() then require_once().
|
I have tried both the following to include the global.php
<?php
$curdir = getcwd ();
chdir('/path/to/my/forum');
@include('/global.php');
chdir ($curdir);
?>
<?php
chdir('./forum');
require_once('./global.php');
chdir('../');
?>
How would I check to see if it is including properly?
I assumed that because I did not get a white page, it was working.
I do use vbDrupal as a front end.Could it be something conflicting?