Quote:
Originally Posted by ludachris
Would these instructions apply to 3.6.8? Or has the code base changed?...
|
This may be better suited to your needs:
How to create your own vBulletin-powered page! (uses vB templates)
Except in test.php you have to find:
PHP Code:
require_once('./global.php');
And replace it with:
PHP Code:
$cwd = getcwd();
chdir('path/to/forum/');
require_once('./global.php');
chdir($cwd);