Extension:EditAccount

From Linux Web Expert

<translate> This extension is professionally maintained by the WikiTeq team.</translate>
<translate> WikiTeq provides official support for [[<tvar name=1>Special:MyLanguage/Version lifecycle</tvar>|MediaWiki LTS releases only]].</translate> <translate> It may work with other MediaWiki releases.</translate>
MediaWiki extensions manual
EditAccount
Release status: stable
File:editaccount.png
Implementation Special page
Description Allows editing account details, or disabling an account
Author(s) Łukasz Garczewski, Jack Phoenix
Maintainer(s) WikiTeq team
Latest version 1.3.4 (2022-12-13)
Compatibility policy For every MediaWiki release that is a Long Term Support release there is a corresponding branch in the extension.
MediaWiki 1.35-1.39
License GNU General Public License 2.0 or later
Download
editaccount
Quarterly downloads Lua error in Module:Extension at line 172: bad argument #1 to 'inNamespace' (unrecognized namespace name 'skin').
Public wikis using Lua error in Module:Extension at line 172: bad argument #1 to 'inNamespace' (unrecognized namespace name 'skin').
Translate the EditAccount extension if it is available at translatewiki.net
Issues Open tasks · Report a bug

The EditAccount extension has two main purposes. One is to change the password, real name, or email address of another user. The second is to disable the account of another user.

The special page may be limited to a certain user group such as staff or bureaucrats.

Effects

Changing the password

Changing the password will automatically log out the user. Since the password is changed, it can prevent access to their account. This can be an alternative to disabling the user's account.

Disabling an account

Similar to the above, the user will be logged out immediately. Alongside that, the following will take effect:

  • The user's password will be scrambled, preventing them from logging in.
  • The user's email address will be removed, and the email authentication status will be also set to "not authenticated".
  • The user's real name will be set to "Account Disabled".

Note that the registration date and other preferences info will not be affected.

When viewing the contributions of a disabled user account, a note appears stating "This account has been disabled." (View example).

All account edits are automatically logged.

Installation

  • <translate> [[<tvar name=2>Special:ExtensionDistributor/EditAccount</tvar>|Download]] and move the extracted <tvar name=name>EditAccount</tvar> folder to your <tvar name=ext>extensions/</tvar> directory.</translate>
    <translate> Developers and code contributors should install the extension [[<tvar name=git>Special:MyLanguage/Download from Git</tvar>|from Git]] instead, using:</translate>cd extensions/
    git clone https://gerrit.wikimedia.org/r/mediawiki/extensions/EditAccount
  • <translate> Add the following code at the bottom of your <tvar name=1>LocalSettings.php </tvar> file:</translate>
    wfLoadExtension( 'EditAccount' );
    
  • Configure user group and user right at your convenience.
  • File:OOjs UI icon check-constructive.svg <translate> Done</translate> – <translate> Navigate to <tvar name=special>Special:Version</tvar> on your wiki to verify that the extension is successfully installed.</translate>


Configuration

By default, all user groups will only have permission to close their own accounts. The user right "editaccount" will have to be set for an existing user group, e.g. "bureaucrat" or for a new user group to allow editing or closing all accounts:

$wgGroupPermissions['bureaucrat']['editaccount'] = true;
$wgGroupPermissions['editaccount']['editaccount'] = true;

Logging

Use of the special pages "CloseAccount" and "EditAccount" is logged at Special:Log/editaccnt. This log can be set to private if needed.

Example log entries
* 04:41, March 18, 2011 WikiAdmin (Talk | contribs | block) disabled account User:Example user ‎ 
* 02:11, February 17, 2011 StaffMember (Talk | contribs | block) changed password for user User:Jimbo Wales

Related extensions

  • DisableAccount - Allows administrators to disable individual accounts.
  • UserMerge - Allows merging and deleting user accounts.
  • UserManager - Allows to administrate users.
  • Sudo - Allows logging into other user's accounts.
  • PassEdit - Another extension doing basically the same thing.