User:Admin
From Rivalug Wiki
Admin notes:
The ConfirmAccount extension disables direct account creation and requires submission and approval of accounts by bureaucrats. Account creations can be enabled through configuring user rights, such as if you wanted Sysops/Bureaucrats to be able to directly make them.
If installed with the ConfirmEdit extension, captchas can be used to stop flood requests.
The new user log extension also works with ConfirmAccount.
see http://www.mediawiki.org/wiki/Extension:ConfirmAccount
Contents |
Config History
19 AUG 04
Restricting Editing
Only authorized users can make edits, only sysop & devel can add users. Based on info found here: http://meta.wikimedia.org/wiki/Setting_user_rights_in_MediaWiki, added this code to LocalSettings.php:
## added 19AUG04 to make editing closed # Public website, closed editorial team $wgWhitelistEdit = true; $wgWhitelistRead = false; $wgWhitelistAccount = array ( "user" => 0, "sysop" => 1, "developer" => 1 );
Any sysop can add a user by going to Special:Userlogin read http://meta.wikimedia.org/wiki/Access_Restrictions
Changing Skin
skin choices: 'standard', 'nostalgia', 'cologneblue', 'davinci', 'mono', 'monobook', 'myskin'
edit LocalSettings.php $wgDefaultSkin = 'cologneblue'
potential problems with CologneBlue see http://meta.wikimedia.org/wiki/Cologne_Blue_skin_problems
