noppid
01-24-2005, 05:59 PM
If you run a board where only members should be allowed to access vBGarage, you can add this code to lock out all guests.
Please note that if you use the "Display Latest Uploads on Forum Home" hack, this will cause a problem, Images will be displayed as the dreaded Red X.
If you want to use this, in vbgarage.php find...
// ################################################## #####################
// ######################## START MAIN SCRIPT ############################
// ################################################## #####################
Below that add...
// Stop guests hack
if (!$bbuserinfo['userid'])
{
print_no_permission();
}
// end stop guests hack
Please note that if you use the "Display Latest Uploads on Forum Home" hack, this will cause a problem, Images will be displayed as the dreaded Red X.
If you want to use this, in vbgarage.php find...
// ################################################## #####################
// ######################## START MAIN SCRIPT ############################
// ################################################## #####################
Below that add...
// Stop guests hack
if (!$bbuserinfo['userid'])
{
print_no_permission();
}
// end stop guests hack