ok, i can get it to work when the file is in the forums directory (
http://www.speedforums.com/forums/test.php) using this code
<?PHP
require("global.php");
if ($bbuserinfo[userid]==0) {
show_nopermission();
} else {
echo ('You are a member');
}
?>
but when I put the file at
http://www.speedforums.com/test.php using this code
<?PHP
require("forums/global.php");
if ($bbuserinfo[userid]==0) {
show_nopermission();
} else {
echo ('You are a member');
}
?>
i get this error "Fatal error: Failed opening required './admin/config.php' (include_path='.:/usr/local/lib/php4/lib/php') in u/web/spe177/forums/global.php on line 96"