Quote:
Originally Posted by nexus851
When a register user try to create a forum, it gives them a "you do not have permission to access this page. This could be due to one of several reasons: etc..." message, but yet still made the forums for then.
I have the "Registered" usergroup set to yes for making forums, so i dont understand why it would give that message.
Please help...
|
another similar happening here ...
i believe it has something to do with
Code:
// Now, to set up the basic usergroup permissions.
$usergroupid = $db->insert_id();
// I cloned the permissions from the Registered user group.
$usergroupinfo= $db->query_first("SELECT forumpermissions FROM ".TABLE_PREFIX."usergroup where usergroupid=23");
$db->query_write("UPDATE ".TABLE_PREFIX."usergroup set forumpermissions=$usergroupinfo[forumpermissions] where usergroupid=$usergroupid");
Im trying to clone/replicate user permissions based on usergroup 23, yet its all set to 'NO' in the forum permissions ..
any ideas?