Log in

View Full Version : How do i include global.php outside vbulletin dir?


Brandon_R
08-26-2009, 02:42 AM
Hello guys, i have vB installed in the folder /forums but i want to make a vbulletin page in the parent dir for the folder forums. What would be the way to include global.php file and other vbulletin files so i can use the template system and all vbulletin's functions?

Brandon_R

Adrian Schneider
08-26-2009, 02:53 AM
In PHP, chdir() to the directory containing global.php, and add <base href="http://site.com/forums/index.php" /> at the top of the <head> section for your new pages.

Dismounted
08-26-2009, 10:13 AM
add <base href="http://site.com/forums/index.php" /> at the top of the <head> section for your new pages.
You can place this code at the top of headinclude (if it was not clear).

Adrian Schneider
08-26-2009, 10:10 PM
I usually do this.

$headinclude = '<base href="' . $vbulletin->options['bburl'] . '/index.php" />' . $headinclude;

Dismounted
08-27-2009, 10:00 AM
That works as well. :) (IIRC, this has been applied in future versions of vBulletin.)