Quote:
Originally Posted by ElfMage
User group mapping in the Standard version is done through vbWiki_Init.php.
For instance, add and customize the following to the ' custom settings' section in vbWiki_Init.php:
PHP Code:
$g_vbWiki_Usergroup_Mapping = array ( 6 /*Administrators*/ => "sysop,bureaucrat", 2 /*Registered Users */ => "editors" );
Thanks.
|
First, great product ElfMage =)
Using Standard version, I've got my vB group mappings going fine. But how do I restrict wiki access to only certain vB groups? During testing and data-population I want only certain groups to have wiki access.
Do I make a group in LocalSettings.php and restrict access there? How will that prevent people seeing the Main Page? Is there actually a way to restrict access to the main page?
Lots of questions =)
Thanks =)
EDIT: OK I've changed my wiki LocalSettings.php to deny everyone except Sysops and Bureaucrats, but ordinary users can still go to the Main Page (they just get a Permission Error page). I'd like to have non-Sysops/Bureaucrats not even load up the wiki Main Page, possibly redirect to a specific error page. Can this be done with vbWiki?