TEHCC Wiki:Maintenance: Difference between revisions
Jump to navigation
Jump to search
(→System Maintenance: update to use php 5.6 from command line) |
(→Site Maintenance: Update for php 5.6 on command line) |
||
Line 29: | Line 29: | ||
* Cleanup after a spam/vandalism battle | * Cleanup after a spam/vandalism battle | ||
*# <kbd>cd</kbd> to <code>cd ~/public_html/clubwiki/</code> directory (the one with LocalSettings.php) | *# <kbd>cd</kbd> to <code>cd ~/public_html/clubwiki/</code> directory (the one with LocalSettings.php) | ||
*# Delete archived revisions (deleted page revisions) <code>php | *# Delete archived revisions (deleted page revisions) <code>/usr/php/56/bin/php maintenance/deleteArchivedRevisions.php</code> for dry run, then execute <code>/usr/php/56/bin/php maintenance/deleteArchivedRevisions.php --delete</code> | ||
*# Delete users older than 7 days with no edits <code>php | *# Delete users older than 7 days with no edits <code>/usr/php/56/bin/php maintenance/removeUnusedAccounts.php --ignore-touched 7</code> for dry run, then execute <code>/usr/php/56/bin/php maintenance/removeUnusedAccounts.php --ignore-touched 7 --delete</code> |
Revision as of 10:40, 23 November 2016
Maintenance notes:
System Maintenance
- Update MediaWiki
- Patch - Available for point releases. Details on the MediaWiki site
- Download patch from the dumps site
- cd to
cd ~/public_html/clubwiki/
directory (the one with LocalSettings.php). - Download (wget) the patch file from the dumps site and gunzip it
gunzip mediawiki stable release number.patch.gz
. - Use
patch -p1 --dry-run
to check what will be changed (e.g.,patch -p1 --dry-run -i mediawiki stable release number.patch
) - If all is well, run patch again without
--dry-run
. - Check Special:Version and you should see the new version number in place.
- Delete patch files
rm mediawiki stable release number.patch*
- Patch - Available for point releases. Details on the MediaWiki site
- Upgrade - detailed later
- Update extensions
- Composer based (Semantics, others?)
- cd to
cd ~/public_html/clubwiki/
directory (the one with LocalSettings.php). - Update composer
/usr/php/56/bin/php composer.phar self-update
- Update using composer
/usr/php/56/bin/php composer.phar update
- cd to
- Manual extensions - Go to Special:Version and compare what's shown on extension page
- NumberFormat - Download needed updates and extract into the extension directory
tar -xzf extension.tar.gz -C public_html/clubwiki/extensions/
- Note: Special:Version currently shows v0.8.0, but site shows v0.8.1, updating doesn't increment.
- NumberFormat - Download needed updates and extract into the extension directory
- Remaining extensions are part of MediaWiki and upgraded with it
- Composer based (Semantics, others?)
- Update completion - run maintenance routine from
cd ~/public_html/clubwiki/
directory:/usr/php/56/bin/php maintenance/update.php
Site Maintenance
- Cleanup after a spam/vandalism battle
- cd to
cd ~/public_html/clubwiki/
directory (the one with LocalSettings.php) - Delete archived revisions (deleted page revisions)
/usr/php/56/bin/php maintenance/deleteArchivedRevisions.php
for dry run, then execute/usr/php/56/bin/php maintenance/deleteArchivedRevisions.php --delete
- Delete users older than 7 days with no edits
/usr/php/56/bin/php maintenance/removeUnusedAccounts.php --ignore-touched 7
for dry run, then execute/usr/php/56/bin/php maintenance/removeUnusedAccounts.php --ignore-touched 7 --delete
- cd to