Extensión:AbsenteeLandlord
![]() Estado de la versión: 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 en la base de datos | No |
Licencia | Licencia Pública General de GNU 2.0 o posterior |
Descargar | |
|
|
Descargas trimestrales | 9 (Ranked 79th) |
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 mueve la carpeta
AbsenteeLandlord
extraída a tu directorioextensions/
.
Los desarrolladores y contribuidores de código deberían instalar la extensión desde Git en su lugar, usando: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
- 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;