Extension:Maintenance
From MediaWiki.org
|
Release status: beta |
|||
|---|---|---|---|
| Implementation | Special page | ||
| Description | Web interface for various maintenance scripts | ||
| Author(s) | Ryan Schmidt (SkizzerzTalk) | ||
| Last Version | 1.0.3 (2008-12-28) | ||
| MediaWiki | 1.13+ | ||
| License | GPL | ||
| Download | Download snapshot |
||
|
|||
|
check usage (experimental) |
|||
The Maintenance extension adds a special page for running various maintenance scripts (see below for the list of currently supported 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 your wiki's 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 as of version 1.0.3. Please note that not all of the features of the following scripts may be implemented in the extension:
- changePassword
- createAndPromote
- deleteBatch
- deleteRevision
- eval
- initEditCount
- initStats
- moveBatch
- reassignEdits
- runJobs
- showJobs
- sql
- stats
[edit] Changelog
- Version 1.0.3 (28 December 2008)
- Added reassignEdits script.
- Version 1.0.2 (22 December 2008)
- Added eval and sql scripts.
- Version 1.0.1 (22 November 2008)
- Fixed moveBatch script. Page deletions done by deleteBatch or deleteRevision scripts are now logged to the user called 'Delete page script'.
- Version 1.0 (28 April 2008)
- Initial release, supports 10 maintenance scripts.