Extensión:AbsenteeLandlord

From mediawiki.org
This page is a translated version of the page Extension:AbsenteeLandlord and the translation is 40% complete.
Manual de extensiones de MediaWiki
Absentee Landlord
Estado de lanzamiento: beta
Implementación Actividad de usuario
Descripción Auto-locks the wiki database if the sysops are all inactive for some time
Autor(es) Ryan Schmidt and Tim Laqua
Última versión 1.4.0 (2019-12-30)
MediaWiki 1.17+
Cambios de la base de datos No
Licencia GNU Licencia Pública general 2.0 o posterior
Descarga
  • $wgAbsenteeLandlordMaxDays
Descargas trimestrales 23 (Ranked 126th)
Traduce la extensión AbsenteeLandlord si está disponible en translatewiki.net

The AbsenteeLandlord extension will automatically lock the database from any further changes if a sysop has not been on the wiki recently (determined by $wgAbsenteeLandlordMaxDays). This helps prevent dead or inactive wikis from becoming spambot targets. To unlock the database, a sysop simply needs to visit the wiki again.

Instalación

  • Descarga y extrae los archivos en un directorio denominado «AbsenteeLandlord» dentro de la carpeta extensions/.
    Developers and code contributors should install the extension from Git instead, using:cd extensions/
    git clone https://gerrit.wikimedia.org/r/mediawiki/extensions/AbsenteeLandlord
  • Añade el siguiente código en la parte final de tu archivo LocalSettings.php :
    wfLoadExtension( 'AbsenteeLandlord' );
    
  • Configuralo a tu gusto
  • Yes Hecho – Navega a Special:Version en el wiki para verificar que la extensión se haya instalado correctamente.

Configuración

By default this extension locks the database after 90 days without having an active sysop. If you would like to change this, e.g. to 60 days you will have to add the following line below the inclusion of this extension:

$wgAbsenteeLandlordMaxDays = 60;