Quote:
Originally Posted by jasculs
Is there anyway to have the vBTube.php file be only accessible to certain usergroups...How would I modify the file to do so. Thanks
|
Usergroup permissions will be a part of the next version, for now you can edit the
vBTube.php file and add:
find:
Code:
require_once('./global.php');
add after:
Code:
if (is_member_of($vbulletin->userinfo, X, Y, Z))
{
print_no_permission();
}
Replace the X,Y,Z with the usergroupids you don't wish to have access.