Mediawiki user permissions
If your Mediaiwki installation is not going to be completely editable by the public you will need to change various permissions options in the LocalSettings.php configuration file. For instance if you want to prevent account creation use: // Only SysOp (Admin) can create accounts – $wgGroupPermissions['*']['createaccount'] = false; If you want to prevent people from creating new pages use: $wgGroupPermissions['*'Â Â Â ]['createpage']Â Â Â Â Â = false; If you want to allow people to create talk pages use: $wgGroupPermissions['*'Â Â Â ]['createtalk']Â Â Â Â Â = true; Or if you want to completely prevent users from editing, without logging is as a registered user, use: $wgGroupPermissions['*']['edit'] = false;
This entry was posted by nseidm1 on August 12, 2008 at 8:13 am, and is filled under Mediawiki, permissions, user. Follow any responses to this post through RSS 2.0. You can leave a response or trackback from your own site.
April 24, 2009 - 10:33 pm
Aha! you very cleaver nettizen. Thank you for the post. Short sweet and the bot spam is now curbed behind a media wiki login.
$wgGroupPermissions['*']['edit'] = false;
tested and worked like a charm