Extension:Maintenance
From MediaWiki.org
|
Maintenance Release status: stable |
|
|---|---|
| Implementation | Special page |
| Description | Web interface for various maintenance scripts |
| Author(s) | Ryan Schmidt (Skizzerz Talk) |
| Version | 1.0 |
| MediaWiki | 1.11+ |
| Download | SVN (browse) Changelog |
| Added rights | maintenance |
The Maintenance extension adds a special page for running various maintenance scripts. The user needs the 'maintenance' right to access the special page.
Contents |
[edit] Installation
- Download the three files from SVN and place them in
$IP/extensions/Maintenance, where $IP is your wiki's directory - Add the following to the end of LocalSettings.php:
//by default all bureaucrats can access this extension. //change 'bureaucrat' to a different group for allowing a different group instead $wgGroupPermissions['bureaucrat']['maintenance'] = true; require_once("$IP/extensions/Maintenance/Maintenance.php");
- Installation can now be verified through Special:Version on your wiki
[edit] List of supported maintenance scripts
This extension supports currently the following scripts. Please note that not all of the features of the following scripts may be implemented in the extension:
- changePassword
- createAndPromote
- deleteBatch
- deleteRevision
- initEditCount
- initStats
- moveBatch
- runJobs
- showJobs
- stats
[edit] Todo
The following scripts are going to be supported in the next version of this extension, which should hopefully be released around mid-June.
[edit] Changelog
- Version 1.0
- Initial release, supports 10 maintenance scripts

