View Full Version : Set equal forum permission on new usergroup
Martz
01-15-2002, 10:00 PM
A simple hack :)
When creating a new usergroup, this hack allows you to specify a usergroup to "clone" or be equal too. I have many private forums and usergroups, all with different permissions. By default when a new usergroup is added, it has no forum permissions on private forums. On large boards, correcting this is a time consuming and tedious task - just to create 1 more community hosted forum!
Heres how it works in prinicipal:
Click Add new Usergroup.
Fill in all the usual stuff and default permissions.
Select from the drop down list the existing usergroup you would like the new usergroup to clone.
A list of forum permissions is grabbed from the forumpermission table
There are then re-inserted into the database under the new usergroup id.
This is my first hack! :D I'd really appreciate any suggestions on how to tidy up the code or make it more efficient.
Martz
01-16-2002, 01:26 AM
Screenshot (a bad one at that)
Jawelin
01-16-2002, 04:41 PM
Very nice.
Just a question: why are you still in beta ? What's the problem ?
Thanks
Martz
01-16-2002, 04:47 PM
Well, afaik its bugfree - I'm using it live on my forums.
Please could someone move this thread to the Full Releases forum.
Thanks :)
Arathorn
01-17-2002, 10:43 AM
Implemented all instructions exacly, but this hack doesn't work for me (vb 2.2.1). I don't get any errors, and the listbox appears, but the new usergroup does not inherit the permissions.
A feature suggestion :) : Add the drop list to the edit usergroup function, and allow us to alter forum permissions easily after creating the usergroup.
Martz
01-17-2002, 02:16 PM
If you try and clone a group which doesn't have any forum/usergroup permissions then obviously the new group isn't going too either.
Could you paste the 2 sections of code you modified in the usergroup.php so I can try and track down the bug? Thanks :)
Arathorn
01-17-2002, 04:54 PM
Right, just to make sure I'm not just confused. You can view your usergroup permissions in Admin CP > Modify > (group) Edit, right? I tried to create a new usergroup based on the Admin usergroup (which has all permissions on) but the new usergroup only had the default options. Do I have a problem? If I do, here's the code:
------------------------------------------------
maketableheader("Adminstrative Permissions");
makeyesnocode("Is Super Moderator","ismoderator",0);
makeyesnocode("Can access control panel<br><font size='1'>Be careful! Allowing CP access will allow a usergroup to change their own permissions!</font>","cancontrolpanel",0);
// Set equal forum permission on new usergroup
maketableheader("Default forum permissions");
makechoosercode("New Usergroup forum permissions equal too","usergroupid","usergroup",$bbuserinfo[usergroupid]);
// End Set equal forum permission on new usergroup
doformfooter("Save");
}
------------------------------------------------
and
------------------------------------------------
$action="modify";
// Set equal forum permission on new usergroup
$addedgroup=$DB_site->query_first("SELECT MAX(usergroupid) AS max FROM usergroup");
$ugperms=$DB_site->query("SELECT * FROM forumpermission WHERE usergroupid=$usergroupid");
while ($ugperm=$DB_site->fetch_array($ugperms)) {
$permforuminfo=$DB_site->query_first("SELECT * FROM forum WHERE forumid=$ugperm[forumid]");
// SQL Insert
$DB_site->query("INSERT INTO forumpermission (forumpermissionid,forumid,usergroupid,canview,can search,canemail,canpostnew,can move,canopenclose,candeletethread,canreplyown,canr eplyothers,canviewothers,caned itpost,candeletepost,canpostattachment,canpostpoll ,canvote,cangetattachment)
VALUES (NULL,'$ugperm[forumid]','$addedgroup[max]','$ugperm[canview]','$ugperm[cansearch]','$ugperm[canemail]','$ugperm[canpostnew]','$ugperm[canmove]','$ugperm[canopenclose]','$ugperm[candeletethread]','$ugperm[canreplyown]','$ugperm[canreplyothers]','$ugperm[canviewothers]','$ugperm[caneditpost]','$ugperm[candeletepost]','$ugperm[canpostattachment]','$ugperm[canpostpoll]','$ugperm[canvote]','$ugperm[cangetattachment]')");
// End SQL Insert
}
// End Set equal forum permission on new usergroup
echo "<p>Record added</p>";
}
------------------------------------------------
Martz
01-18-2002, 07:50 AM
Well, by default the Administrators usergroup doesn't have any entries in the forumaccess table - as they should have rights to everything already.
This hack is solve problems for when you have a lot of private forums and usergroups. If you create a new usergroup (without this hack), it doesn't have any custom permissions and you have to spend hours going though each private forum, and blocking access to the new usergroup. This clone hack becomes usefull when you clone a usergroup which is restricted to many forums, or has custom permissions as it saves a lot of time.
So in a nutshell, if you clone the admins group it won't do anything (much).
Arathorn
01-18-2002, 08:10 AM
Ah, I get it, thanks. :)
ladyfyre
08-09-2002, 05:57 PM
any ideas on why this will not work in the 2.2.6 version? i have tried re-installing it repeatedly, and it just ain't working. :(
i love this hack....
ladyfyre
08-09-2002, 06:31 PM
nm...i figured it out :)
Boofo
08-24-2002, 02:00 AM
But as you add new hacks that require setting permissions, don't you have to constantly update this or it will not clone all the permissions for the various hacks?
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.