I think vB may not like you attaching licensed scripts.

Best to get rid of it... it's ok, i've seen it and found the problem.
I was right about the "if Guest" thing.
Here is what I see :
PHP Code:
if ($bbuserinfo['userid']==0) {
eval("\$headinclude = \"".gettemplate('headinclude')."\";");
eval("\$header .= \"".gettemplate('header')."\";");
// parse tHE DSS, Search The Internet template (global)
eval("\$search_the_internet = \"".gettemplate('search_the_internet')."\";");
...
...
...
So, replace this :
PHP Code:
if ($bbuserinfo['userid']==0) {
eval("\$headinclude = \"".gettemplate('headinclude')."\";");
eval("\$header .= \"".gettemplate('header')."\";");
// parse tHE DSS, Search The Internet template (global)
eval("\$search_the_internet = \"".gettemplate('search_the_internet')."\";");
eval("\$vbpopup .= \"".gettemplate('vbpopup')."\";");
eval("\$footer .= \"".gettemplate('footer')."\";");
} else {
eval("\$headinclude = \"".gettemplate('headinclude')."\";");
eval("\$header .= \"".gettemplate('header')."\";");
eval("\$footer .= \"".gettemplate('footer')."\";");
}
... with this :
PHP Code:
eval("\$headinclude = \"".gettemplate('headinclude')."\";");
eval("\$header .= \"".gettemplate('header')."\";");
// parse tHE DSS, Search The Internet template (global)
eval("\$search_the_internet = \"".gettemplate('search_the_internet')."\";");
if ($bbuserinfo['userid']==0) {
eval("\$vbpopup .= \"".gettemplate('vbpopup')."\";");
}
eval("\$footer .= \"".gettemplate('footer')."\";");
I've cleaned up that chunk of code for you at the same time - there was no need for the "decisions" to be arranged like that... my changes will make my hack/add-on work for all usergroups, and will give better peformance of your 'global.php'... not much mind.. but it's better.
Backup your 'global.php' file first, before you do the above... just in case.