Manual:Upgrading to 1.11
This page is obsolete. It is being retained for archival purposes. It may document extensions or features that are obsolete and/or no longer supported. Do not rely on the information here being up-to-date. |
This page contains information on upgrading to a non-current version of MediaWiki. You are advised to upgrade to version 1.42.3 if possible. Instructions for this can be found at Manual:Upgrading . |
Stable version (MediaWiki 1.42 )
- mediawiki-1.42.3.tar.gz
- mediawiki-1.42.3.zip
- Git branch: REL1_42
Legacy versions (MediaWiki 1.41 )
- mediawiki-1.41.4.tar.gz
- mediawiki-1.41.4.zip
- Git branch: REL1_41
Alpha version (MediaWiki 1.44 )
More information:
Summer. A carefree time, full of sunshine, the Wikimania conference, and of course, a new version of MediaWiki. Grab an ice-cream and relax; we've provided the traditional guide for that poolside upgrade to 1.11.
Overview
First, read the UPGRADE text file included in MediaWiki 1.11.
As with all MediaWiki upgrades, the basic premise is the same:
- Check the requirements
- Read the release notes
- Back up existing files and the database
- Unpack the new files
- Run the update script to check the database
- Upgrade extensions
- Test the update
Check requirements
MediaWiki 1.11 requires:
PHP
- PHP 5.0.x or later
- We recommend using PHP 5.1.x or 5.2.x.
- Note that PHP 5.0.x under certain 64-bit platforms contains bugs which cause fundamental problems with MediaWiki. If running on an x86_64 (AMD64, EMT64) or other affected 64-bit platform, PHP 5.1.x or 5.2.x is required.
DBMS
- MySQL 4.0.x or later
- Version 3.x has not been supported since 1.6.0
or
- PostgreSQL 8.1 or later
- You will also require the
tsearch2
andplpgsql
modules
- You will also require the
Read the release notes
Within the distribution tarball, or within the files checked out/exported from SVN, there are a number of files with capitalised filenames, one of which contains the RELEASE-NOTES. Now's the time to open it up and find out what's been changed in 1.11. – You can also read them at Release notes/1.11.
Back up existing files and the database
While the upgrade scripts are well-maintained and robust, things could still go pear-shaped. Before proceeding to update the database schema, make a full backup of the wiki, including both the database and the files:
- the wiki's content, from the database. It may be a good idea to create an XML dump in addition to the SQL database dump.
- images and other media files (the contents of the
images
directory) - configuration files, i.e.
LocalSettings.php
andAdminSettings.php
(if present) - MediaWiki's program files, including all skins and extensions, especially if you modified them.
See Manual:Backing up a wiki for instructions.
Unpack the new files
If using a tarball package, decompress it; if using Subversion, export the files into a clean location. Replace all existing files with the new versions from 1.11, preserving the directory structure. The core code is now up to date.
Run the update script
Note: Make sure there's an AdminSettings.php
file in the wiki root, and it's got up to date information in it. The user needs full permissions on the database.
The preferred method of performing the update is using the command-line maintenance script, although it is also possible to re-run the web-based installer.
Shell
From the command line, or an SSH shell or similar, change to the maintenance
directory and execute the update script:
$ php update.php
MediaWiki will inspect the existing schema and update it to work with the new code, adding tables and columns as needed.
Alternative 1: phpShell
If shell access is not available, look at options such as phpShell, which emulates a command prompt using PHP functions. This might not work on some locked-down hosting setups.
When using such a solution, it is often desirable to skip the countdown period at the start of the script. Pass the --quick
option to the update script to do so:
$ php update.php --quick
Alternative 2: Re-run the installer
An alternative to running the update script from the shell is to re-run the web installer. To do this:
- Rename
LocalSettings.php
toLocalSettings.old.php
- Make the
config
directory writable by the web server - Make sure the database user has full rights to the database
- Browse to the wiki and start the installer
Fill in the form fields with the same values as was done during the previous version's installation. When the installation process starts, the script will detect existing MediaWiki tables, and upgrade their schema. When this is complete, a new LocalSettings.php
will be generated.
- Delete the new configuration file
- Rename
LocalSettings.old.php
back toLocalSettings.php
- Restore permissions on the
config
directory
Upgrade extensions
Certain extensions have been updated in order to work with MediaWiki 1.11. Be sure to upgrade to the latest versions of such extensions. You might need to perform manual updates to custom extensions.
Test the update
Once the upgrade has completed, browse to the wiki and check basics such as viewing and editing pages to ensure things still work as expected.
Visit Special:Version and check that the version shown is correct.