Eddie - Something is definatly not edited right, the print_no_permission is a standard vB function, one of the files you are referenceing, i.e. global, or a functions is not being included properly. Make sure you go into the chat/index.php and change this:
Code:
// ## Changes Directory so it can accesss vBulletin ##
// Examples
// cPanel/Linux chdir("/home/username/public_html/forum/");
// Windows chdir("c:/inetpub/users/username/www/");
chdir('');
to this
Code:
// ## Changes Directory so it can accesss vBulletin ##
// Examples
// cPanel/Linux chdir("/home/username/public_html/forum/");
// Windows chdir("c:/inetpub/users/username/www/");
chdir('/hsphere/local/home/eddie/twdforums.com/');
That way it can reference
Code:
require_once("./global.php");
Properly.