Extension:Password Reset
From MediaWiki.org
(Redirected from Extension:PasswordReset)
|
|
This extension is obsolete! It has been replaced by core functionality in the MediaWiki software (which was added in version 1.18). |
|
Password Reset Release status: stable |
|||
|---|---|---|---|
| Implementation | Special page, User rights, User identity | ||
| Description | Resets Wiki user's passwords - requires 'passwordreset' privileges | ||
| Author(s) | Tim LaquaTalk | ||
| Last version | 1.7 (2008-09-04) | ||
| MediaWiki | 1.9+ | ||
| License | No license specified | ||
| Download |
Download snapshot (Git master)
Git [?]: repo summary • tree • code changes SVN [?]: checkout-url • tree • code changes |
||
|
|||
|
|||
|
Check usage (experimental) |
|||
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 from Special:ExtensionDistributor/PasswordReset:
- PasswordReset_Disabledusers.php
- PasswordReset_body.php
- PasswordReset.i18n.php
- PasswordReset.alias.php
- PasswordReset.php
- 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
[edit] Usage
- Follow Installation Instructions
- You will have two new Special Pages titled "Password Reset" and "Disabled users"