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:
- To disable read access for anonymous users, add the following line:
$wgGroupPermissions['*']['read'] = false;
- To allow write access to anonymous users, add the following line:
$wgGroupPermissions['*']['edit'] = true;
- To disable email confirmation before new users are allowed to edit files:
$wgEmailConfirmToEdit = false;
- To disallow account creation and remove the 'Create account' link:
$wgGroupPermissions['*']['createaccount'] = false;