Halp.
I'm using mediawiki for the rpg I'm making (yes I'm still making it ), and it turned into a big old pit of spam. I've been looking at the various different methods of controlling it, but all the documentation I can find assumes you are using your wiki in the traditional way, with loads of people contributing to it. Thing is, I'm not. At the moment there are only two, maybe three people who need to be able to create/edit pages. It occurs to me that simply not allowing people without accounts to do anything, and then turning off the ability to sign up, my problem would be solved. I can't work out how to do that though.
Tl;dr: how do I...
A) stop people making new accounts
And
B) stop people without accounts doing anything other than read it.
Mediawiki user control
Moderator: Forum Moderators
-
- Site Owner
- Posts: 9597
- Joined: May 16th, 2005, 15:31
- Location: Coventry, UK
- Contact:
Since I've just done exactly this with our wiki:
Open LocalSettings.php
Stick this at the end:
Admins can create accounts via the Special pages link.
More options for other stuff here: http://www.mediawiki.org/wiki/Manual:Preventing_access
Open LocalSettings.php
Stick this at the end:
Code: Select all
$wgGroupPermissions['*']['edit'] = false;
$wgGroupPermissions['*']['createaccount'] = false;
More options for other stuff here: http://www.mediawiki.org/wiki/Manual:Preventing_access