Hey guys, i bought VB just yesterday and already have it integrated with my site (hand integrated, no portals) but i had a little problem.
I have a few "admin-only" pages, which i have used global.php to protect it from unauthed use.
PHP Code:
[code]require('global.php');
global $bbuserinfo;
if($bbuserinfo["usergroupid"] != "6")
{
print_no_permission();
}
However, if they arent logged in or or do not belong to this group it gives me a standard VB no permission error (as its designed to).
BUT! the links to either login or log out point to login.php in the current directory, which doesnt exist.
How can i set it so any links used are set statically and not relative? It would be great if someone could help with that