Alot of people seem to have troubles prohibiting guests from accessing their custom pages, I've seen a couple of different methods but none of which seem to work.
Here's what I did, and it works just fine:
Code:
// ########################################################
// ######################## START MAIN SCRIPT #############
// ########################################################
$navbits = array();
$navbits[$parent] = 'Manage Account';
$navbits = construct_navbits($navbits);
eval('$navbar = "' . fetch_template('navbar') . '";');
// ######################## START CIP EDITION #############
if ($vbulletin->userinfo['userid'] == 0)
{
$show['permission_error'] = 1;
eval('print_output("' . fetch_template('STANDARD_ERROR') . '");');
}
elseif (isset($_REQUEST['do']))
{
//And my code goes on, but that's none of your business *evil grin*
eval('print_output("' . fetch_template('YourTemplateWhateverItIsNamed') . '");');
}