How about putting in there the direct link to the global.php
PHP Code:
require($DOCUMENT_ROOT . "/foldername/global.php");
foldername being whatever folder(s) lead to your vb folder..
then you can put the script anywhere.
update:
I use this for mine... my vb folder is "main" and I have an "about" folder in the same root as the main folder and I use this in all my pages to get the global.php
PHP Code:
<?php
chdir($DOCUMENT_ROOT . "/main");
require($DOCUMENT_ROOT . "/main/global.php");
chdir($DOCUMENT_ROOT . "/about");
?>