Site Settings
Visual Editor
The VisualEditor extension has been enabled to allow WYSIWYG editing.
Editing Permissions
To limit edit rights to users with an account in MediaWiki, we have modified the LocalSettings.php file in the MediaWiki installation.
- Disable anonymous editing: Add the following lines to your
LocalSettings.phpfile:
$wgGroupPermissions['*']['edit'] = false;
- Enable editing for registered users: Add this line to allow registered users to edit:
$wgGroupPermissions['user']['edit'] = true;
- Restrict account creation (optional): If you want to restrict account creation to sysops only, add:
$wgGroupPermissions['*']['createaccount'] = false;
$wgGroupPermissions['sysop']['createaccount'] = true;