Installation seems to have worked, but no users (not even Administrator) can create new pages. Pages can be edited. How does one configure the usergroups to allow new wiki page creation?
I've disabled guest editing with the following in LocalSettings.php and that seems to work:
# Disabling new user registrations
$wgWhitelistAccount = array ( "sysop" => 1, "developer" => 1 );
# Disabling anonymous edits
$wgGroupPermissions['*']['createaccount'] = false;
$wgGroupPermissions['*']['read'] = false;
$wgGroupPermissions['*']['edit'] = false;
$wgWhitelistRead = array ("Special:Userlogin");
But no users can create new pages.
For vB integration, how does:
$wgGroupPermissions[...]
map to a vB user group?
Does it need a vB user group id?
E.g.
$wgGroupPermissions['6']
Or the vB usergroup name?
E.g.
$wgGroupPermissions['Administrator']
Confused.
Thanks for any help.
|