Access Control

Access Control

Default setup
The wiki is setup to be editable by users with a registered wiki account.


Changing permissions
Use the File manager to edit the values in /app/data/LocalSettings.php.
Here are some commonly requested settings:
  1. To disable read access for anonymous users, add the following line:
$wgGroupPermissions['*']['read'] = false;
  1. To allow write access to anonymous users, add the following line:
$wgGroupPermissions['*']['edit'] = true;
  1. To disable email confirmation before new users are allowed to edit files:
$wgEmailConfirmToEdit = false;
  1. To disallow account creation and remove the 'Create account' link:
$wgGroupPermissions['*']['createaccount'] = false;