From MediaWiki.org
Password Reset extension allows Wiki users with the 'passwordreset' permission to reset MediaWiki user's passwords (Local users only).
- As of v1.6, r30588, the "Disabled users" special page lists users that have been disabled using PasswordReset.
- As of v1.4, r28418, the GetBlockStatus hook is employed to disallow users emailing themselves new (random) passwords from the login form if their account has been DISABLED via the Password Reset extension.
- The system message shown to users with disabled accounts who request a new password via email is 'blocked-mailpassword'
[edit] Installation
- Create a new folder (directory) in the following location:
wiki-install-folder/extensions/PasswordReset
- Download the following five required files:
- Copy the five files in to the new PasswordReset folder
- Add the following code to your LocalSettings.php (at the bottom)
$wgGroupPermissions['sysop']['passwordreset'] = true;
require_once( "$IP/extensions/PasswordReset/PasswordReset.php" );
- Note the new addition of the 'passwordreset' permission in 1.2 - this must be explicitly granted as shown
- Follow Installation Instructions
- You will have two new Special Pages titled "Password Reset" and "Disabled users"