Site Settings

From ILTA Media Wiki
Revision as of 13:46, 8 April 2025 by David.schrag@faberlawgroup.com (talk | contribs) (Created page with subheadings for Visual Editor and Editing Permissions)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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.

  1. Disable anonymous editing: Add the following lines to your LocalSettings.php file:
   $wgGroupPermissions['*']['edit'] = false;
  1. Enable editing for registered users: Add this line to allow registered users to edit:
   $wgGroupPermissions['user']['edit'] = true;
  1. Restrict account creation (optional): If you want to restrict account creation to sysops only, add:
   $wgGroupPermissions['*']['createaccount'] = false;
   $wgGroupPermissions['sysop']['createaccount'] = true;