Erweiterung:DisableAccount

This page is a translated version of the page Extension:DisableAccount and the translation is 20% complete.
MediaWiki-Erweiterungen
DisableAccount
Freigabestatus: ohne Wartung
Einbindung Spezialseite , Benutzer-Zugang
Beschreibung Allows administrators to disable individual accounts.
Autor(en) Andrew Garrett (WerdnaDiskussion)
MediaWiki >= 1.35.0
Datenbankänderungen Nein
Lizenz GNU General Public License 2.0 oder neuer
Herunterladen
disableaccount
Quarterly downloads 53 (Ranked 99th)
Übersetze die DisableAccount-Erweiterung, wenn sie auf translatewiki.net verfügbar ist
Probleme Offene Aufgaben · Einen Fehler melden

The DisableAccount extension allows administrators to disable individual users' wiki accounts.

Disabling an account will remove this user's password and email, and place it in an "inactive" user group. It is not reversible without system administrator intervention. To re-enable an account, remove it from the inactive user group, and reset its password using changePassword.php.

Installation

  • Die Erweiterung herunterladen und die Datei(en) in ein Verzeichnis namens DisableAccount im Ordner extensions/ ablegen.
    Developers and code contributors should install the extension from Git instead, using:cd extensions/
    git clone https://gerrit.wikimedia.org/r/mediawiki/extensions/DisableAccount
  • Folgenden Code am Ende deiner LocalSettings.php -Datei einfügen:
    wfLoadExtension( 'DisableAccount' );
    $wgGroupPermissions['bureaucrat']['disableaccount'] = true;
    
  •   Erledigt – Zu Special:Version in dem Wiki (bei Einstellung auf deutsch nach Spezial:Version) navigieren, um die erfolgreiche Installierung der Erweiterung zu überprüfen.

The second line above assumes you want to give the disableaccount permission to users in the bureaucrat user group. Replace bureaucrat in the LocalSettings.php lines with the appropriate other user group, if you wish to use a different configuration. The permission should not be given to user groups that are automatically assigned or widely populated.

See also