Changes between Version 7 and Version 8 of MediaWikiConfiguration


Ignore:
Timestamp:
Aug 8, 2009, 9:23:06 AM (15 years ago)
Author:
neteler
Comment:

how to block anonymous users from editing the wiki

Legend:

Unmodified
Added
Removed
Modified
  • MediaWikiConfiguration

    v7 v8  
    4141}}}
    4242
     43== Security ==
     44
     45To keep anonymous users from editing the wiki, add/change in LocalSettings.php:
     46
     47{{{
     48$wgGroupPermissions['*']['edit'] = false;
     49$wgGroupPermissions['user']['edit'] = true;
     50}}}
     51
     52This will prevent anonymous users (users who aren't logged in) from editing the wiki.
     53
    4354== See also ==
    4455