2016-04-16

Created page with "== Гл. таксама =="

New page

<languages/>

<div style="border:1px solid #f3f3ff; padding-{{dir|{{pagelang}}|right|left}}:0.5em !important; background-color:#f3f3ff; border-width:{{dir|{{pagelang}}|0 1.4em 0 0|0 0 0 1.4em}}; clear:{{dir|{{pagelang}}|left|right}}; float:{{dir|{{pagelang}}|left|right}}">

{{TNT|MW quick download}}

</div>

== Basic overview ==

=== File transfer ===

Choose a method for transferring files:

* [[w:Wget|wget]]

* Secure copy with [http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html SCP] or [[w:WinSCP|WinSCP]]

* [[w:SSH File Transfer Protocol|SSH File Transfer Protocol]] (SFTP)

* Using a [[w:File Transfer Protocol|FTP]] client.

* The hosting company might provide a file manager interface via the web browser; check with your provider.

* Some other method. There is a list of these at [[w:List of file transfer protocols]]

===Preliminary===

Read {{git file|project=mediawiki/core|branch={{MW stable release git}}|file=UPGRADE|text=the UPGRADE text file included in MediaWiki}}.

# Check the requirements

# Read the release notes

# Back up existing files and the database

# Unpack the new files

# Upgrade extensions

# Run the update script to check the database

# Test the update

== Check requirements ==

MediaWiki {{MW stable branch number}} requires:

* '''PHP {{MW stable php requirement}}'''+

* One of the following:

** '''MySQL {{MW stable mysql requirement}}'''+ (or equivalent '''MariaDB''')

** '''PostgreSQL 8.3'''+

** '''SQLite 3.3.7'''+

** '''Oracle 9.0.1'''+

If you are using PostgreSQL, please also read {{ll|Manual:Upgrading Postgres}}.

For more information, please read the {{ll|Manual:Installation requirements}} and {{ll|Compatibility}}.

== Read the release notes ==

Within the distribution tarball, or within the files checked out/exported from [[Special:MyLanguage/Gerrit|Git]], there are a number of files with capitalized filenames, one of which contains the '''{{git file|project=mediawiki/core|branch={{MW stable branch git}}|file=RELEASE-NOTES-{{MW stable branch number}}|text=RELEASE-NOTES}}''' ([[Special:MyLanguage/Release notes|wiki]]).

Now's the time to open it up and find out what's been changed in this release.

== Back up existing files and the database ==

:''Full instructions: {{ll|Manual:Backing up a wiki}}''

While the upgrade scripts are well-maintained and robust, things could still go awry. Before proceeding to update the database schema, '''make a full [[Special:MyLanguage/Manual:Backing up a wiki|backup]]''' of the wiki, including both the database and the files:

* the wiki's content, from the database, (make sure you get the character set specified correctly, first check LocalSettings.php). It may be a good idea to create an XML dump in addition to the SQL database dump.

:* MySQL, both SQL dump and XML dump are for use with the <code>mysql</code> command:

mysqldump --user='''''wikidb_user''''' --password='''''wikidb_userpassword''''' '''''wikidb''''' > '''''file.sql'''''

mysqldump --user='''''wikidb_user''''' --password='''''wikidb_userpassword''''' '''''wikidb''''' --xml > '''''file.xml'''''

:* PostgreSQL, database dump for use with <code>pg_restore</code> command:

pg_dump --create -Fc '''''wikidb''''' > '''''file.db.dump'''''

:* SQLite, you use a MediaWiki script for making a backup:

php '''''wikifolder'''''/maintenance/sqlite.php --backup-to '''''file'''''</tt>

* images and other media files (the contents of the <tt>images</tt> directory, custom logo /skins/common/images/wiki.png)

* configuration files, e.g. <tt>LocalSettings.php</tt> and <tt>.htaccess</tt> (if present)

* MediaWiki's program files, including all skins and extensions, especially if you modified them.

== Unpack the new files ==

=== Using a tarball package ===

You can put the new files into place using FTP or the command line. Use the command line, if you have access to it! Using the command line will be much faster than having to upload each single one of the thousands of files via FTP.

{{TNT|Note}} You should put the decompressed tarball in a new and empty folder on your server. If you instead extract the new version directly on top of your old version, rather than in a new directory, you should follow the instructions described in [[#Back up existing files and the database|Back up existing files and the database]]: otherwise, if you've made any customizations you may erase them in a way that leaves you with no reference to re-apply them from. Extracting a tarball over top of your live copy of MediaWiki can also leave behind files from the old version of MediaWiki which may interfere with the upgraded code. It's recommended that you unpack the new files into a new directory, and then apply customizations to the new directory (restoring LocalSettings.php, images folder, extensions, and other customizations like custom skins)

==== FTP or graphical ====

If you cannot access the command line on your server, download the MediaWiki tarball to your local computer and use [http://www.7-zip.org/download.html 7zip] to extract the tarball on your local PC.

After you extracted the files locally, use your favorite FTP client software to upload directories and files to the server.

==== Command line ====

You may need to run the command as <tt>sudo</tt> if you don't have full write permissions to the wiki install directories under your current user. When untarring a tarball package normally a new directory for the new wiki version will be created and you will have to copy the old configuration files and images directory from your old installation directory:

$ cd /path/to/your/new/installation/

$ wget https://releases.wikimedia.org/mediawiki/{{MW stable branch number}}/mediawiki-{{MW stable release number}}.tar.gz

$ tar -xvzf mediawiki-{{MW stable release number}}.tar.gz

$ rm mediawiki-{{MW stable release number}}.tar.gz

(Open)Solaris users should use <kbd>gtar</kbd>, or:

$ gzip -dc mediawiki-{{MW stable release number}}.tar.gz | tar xf -

===Other files===

After extracting the tarball, you should copy or move some files and folders from the old installation directory to the new one:

* <code>LocalSettings.php</code>, which contains your old configuration settings.

* The <code>images</code> (or <code>uploads</code> in older versions) directory, which contains all the uploaded files to the wiki, unless you have chosen a different upload directory, and change the ownership and permissions. <code>chmod -R 755 images</code> and <code>chgrp -R apache images</code> (e.g. if your web user is ''apache'').

* Some extensions in the <code>extensions</code> directory. You should always get updated extensions, old extensions aren't guaranteed to work with a newer version of MediaWiki.

* In case you use a [[Special:MyLanguage/Manual:$wgLogo|custom logo]] this file also needs to be restored from backup. Before 1.24 usually in <code>skins/common/images/</code>. After 1.24 in <code>resources/assets/</code> or <code>images/</code> if that's what you chose to use. Then add to LocalSettings.php e.g. <code>$wgLogo = "$wgScriptPath/images/logo.png";</code>

* Custom skins from within the <code>skins</code> directory.

* Any modifications made to the old installation files or extensions.

* Any .htaccess file (if you're using Apache and you've defined any rules in them).

Once done, make this new folder the published folder on the web server, or rename the old installation directory and then rename the new one to match the old name.

=== Using Git ===

If using {{ll|Download from Git|Git}}, export the files into a clean location, and then copy the old customized files into the new location as described in the previous section.

If you are upgrading to MediaWiki 1.25 or later, you will also need to install some external PHP libraries using Composer or a provided collection maintained for the Wikimedia wiki farm. More details on installing and updating external libraries can be found in the [[Download_from_Git#Fetch_external_libraries|Git download documentation]].

=== Using patch ===

A small patch file is usually made available for a minor version upgrade. Manually download and extract the patch file from [https://releases.wikimedia.org/mediawiki/ the dumps site] or follow the directions with wget below. Patches are incremental, you can '''not ''' skip a version.

# <kbd>cd</kbd> to your main MediaWiki directory (the one with LocalSettings.php).

# Download the patch file and <kbd>gunzip</kbd> it.

# Use <code>patch -p1 --dry-run</code> to check what will be changed (''e.g.'', <code>patch -p1 --dry-run -i ''mediawiki stable release number.patch''</code>)

# If all is well, run <kbd>patch</kbd> again without <code>--dry-run</code>.

# Check your Special:Version and you should see the new version number in place.

=== Files remaining that may cause errors ===

If you unpacked over the old installation directory, some old files can cause problems with the new version.

{{MW 1.18|and after}}

If you are not using [[Special:MyLanguage/Manual:Configuration settings#Profiling|profiling]], but have a <code>StartProfiler.php</code> file in the MediaWiki root folder, you may receive errors referring to <code>/includes/Profiler.php</code>. Deleting, or renaming, the <code>StartProfiler.php</code> file will resolve this error. The <code>StartProfiler.sample</code> file, also in the MediaWiki root folder, can serve as a template should you enable profiling in the future.

{{MW 1.23|and after}}

MediaWiki 1.23 deprecates the skin autodiscovery mechanism of core skin files. After upgrading to this version, you should ensure that the old files <code>Chick.php</code>, <code>Nostalgia.php</code>, <code>Simple.php</code> and <code>Standard.php</code> directly in the <code>skins/</code> directory as well as the according subfolders inside the <code>skins/</code> directory got removed. MediaWiki will log warnings if any of them are still found to help you remember. (You will also need to adjust any custom skins to follow a similar convention.) See {{ll|Manual:Skin autodiscovery}} for details.

{{MW 1.24|and after}}

MediaWiki 1.24 changes the paths of core skin files. After upgrading to this version, you should ensure that the old files <code>CologneBlue.php</code>, <code>Modern.php</code>, <code>MonoBook.php</code> and <code>Vector.php</code> directly in the <code>skins/</code> directory are no longer present. See {{ll|Manual:Skin autodiscovery}} for details.

== Upgrade extensions ==

Certain extensions have been updated in order to work with the new version of MediaWiki. Be sure to upgrade to the latest versions of such extensions. You might need to perform manual updates to custom extensions.

Different [[Special:MyLanguage/tarballs|tarballs]] include some subsets of extensions and have versioning which helps you upgrade choosing the right one for your MediaWiki core release.

[[Special:ExtensionDistributor|Extension Distributor]] works well for most people who want a snapshot of extensions that will work with their supported versions of MediaWiki.

If you want a lot of extensions then [[Special:MyLanguage/Download from Git|downloading from Git]] is probably best.

== Adapt your LocalSettings.php ==

If you use the same <tt>LocalSettings.php</tt> from the old version, you may need to adapt it to how new versions handle it:

=== Skin registration ===

Since MediaWiki 1.24, bundled skins like Vector, Monobook, Modern and CologneBlue are no longer part of MediaWiki core, and they need to be registered explicitly in <tt>LocalSettings.php</tt> to use them, otherwise MediaWiki will warn that you don't have installed skins.

This is what you need to add to <tt>LocalSettings.php</tt> when upgrading from versions older than 1.24 and want to have available one of those skins:

<syntaxhighlight lang="php">

wfLoadSkin( 'Vector' );

wfLoadSkin( 'MonoBook' );

wfLoadSkin( 'Modern' );

wfLoadSkin( 'CologneBlue' );

</syntaxhighlight>

This code is for MediaWiki 1.25 and newer.

For MediaWiki 1.24 you need to use the following code:

<syntaxhighlight lang="php">

require_once "$IP/skins/Vector/Vector.php";

require_once "$IP/skins/MonoBook/MonoBook.php";

require_once "$IP/skins/Modern/Modern.php";

require_once "$IP/skins/CologneBlue/CologneBlue.php";

</syntaxhighlight>

Other skins may still not be adapted to the new [[Manual:Extension registration|skin registration]] system, so refer to the documentation page about each skin to see how to register it properly in case of problems.

=== Extension registration ===

Since MediaWiki 1.25, extensions use a new [[Manual:Extension registration|extension registration]] system.

Previously your <tt>LocalSettings.php</tt> would include something like:

<syntaxhighlight lang="php">

require_once "$IP/extensions/Cite/Cite.php";

require_once "$IP/extensions/Gadgets/Gadgets.php";

require_once "$IP/extensions/ImageMap/ImageMap.php";

require_once "$IP/extensions/InputBox/InputBox.php";

require_once "$IP/extensions/Nuke/Nuke.php";

require_once "$IP/extensions/ParserFunctions/ParserFunctions.php";

require_once "$IP/extensions/Poem/Poem.php";

require_once "$IP/extensions/SyntaxHighlight_GeSHi/SyntaxHighlight_GeSHi.php";

require_once "$IP/extensions/WikiEditor/WikiEditor.php";

</syntaxhighlight>

This can be converted to:

<syntaxhighlight lang="php">

wfLoadExtension( 'Cite' );

wfLoadExtension( 'Gadgets' );

wfLoadExtension( 'ImageMap' );

wfLoadExtension( 'InputBox' );

wfLoadExtension( 'Nuke' );

wfLoadExtension( 'ParserFunctions' );

wfLoadExtension( 'Poem' );

wfLoadExtension( 'SyntaxHighlight_GeSHi' );

wfLoadExtension( 'WikiEditor' );

</syntaxhighlight>

Extensions are being adapted to use the new extension registration system.

Extensions that are not adapted should use the old way of installing them.

Refer to the installation instructions on the extension's page for more information.

=== Other variables ===

Some variables may be obsolete or even removed.

Having them in <tt>LocalSettings.php</tt> usually won't have any effect.

New variables may be added in newer versions, or some existing variables changed their type.

We usually try to use sane defaults for them, and in case of type change, be backwards compatible.

In any case, take a look to the release notes to see those changes.

{{anchor|Run the update script}}

== Run the update script ==

<!--

NOTE TO EDITORS: As of r72451 <http://www.mediawiki.org/wiki/Special:Code/MediaWiki/72451>, this section name is linked from an error message hardcoded into MediaWiki, so if you change the section name, add <span id="Run_the_update_script"></span> or something so that the links still work.

-->

You can upgrade the MediaWiki database in two ways: Either from the command line or from the web browser. If you have shell access to your server, upgrading from the command line is recommended, since this reduces the risk of the upgrade process being interrupted by a timeout or connection reset.

The script will also attempt to download any missing dependency which MediaWiki needs.

=== Command line ===

Access the command line of your server or an SSH shell or similar. You can access the command line by connecting to your server via SSH. If the local PC you are working on runs Microsoft Windows, you will need a tool like [http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html PuTTY] to use SSH. From the command line or the Shell, change to the <tt>'''maintenance'''</tt> directory and execute the [[Special:MyLanguage/Manual:update.php|update script]]:

$ php update.php

On Linux if you get an error try performing same command as root (<kbd>sudo php maintenance/update.php</kbd>). Note for simple installations on Windows (e.g. with {{ll|Manual:Installing MediaWiki on XAMPP|XAMPP}}):

First make sure that your web server (such as Apache) and your database (such as MySQL) are running.

Then run update.php: right-click it, select Open With, and browse to PHP.exe.

The resulting command prompt window will likely autoclose when the schema upgrade completes.

You might see a message that your PHP version is too old and that MediaWiki needs a newer version. After that message the update aborts. Reason for this error is that the command line can use another PHP version than that one which you have when you execute MediaWiki from the web server. When you get this message you should check, if you can execute a newer PHP version on the shell by using a different command: That might e.g. be ''php5'' or ''php56''. If another version is available and - if so - under which name, depends on the setup of your server. If it does not work, ask your hoster; he will surely know.

MediaWiki will inspect the existing schema and update it to work with the new code, adding tables and columns as needed.

{{ {{TNTN|Note}} |If you use a [[Special:MyLanguage/Manual:Shared database|Shared database]], you should pass the <code>--doshared</code> parameter if you want the shared tables to be updated. Otherwise they won't be touched by the update script.}}

==== What to do in case of "ALTER command denied to user" error (or similar) ====

In case the scripts abort with a message similar to:

<pre>

Error: 1142 ALTER command denied to user 'wiki'@'localhost' for table 'mytable' (localhost)

ERROR: must be the owner of the mytable relation

</pre>

This means that you should check that you have defined {{ll|Manual:$wgDBadminuser|$wgDBadminuser}} and {{ll|Manual:$wgDBadminpassword|$wgDBadminpassword}} in your {{ll|Manual:LocalSettings.php|LocalSettings.php}} file (in the main directory). These are the user and password needed by this script in order to access to the database.

==== What to do in case of "unexpected T_STRING" error ====

Individuals running update.php from the command line may encounter the following error:

<pre style="overflow:auto;">

syntax error, unexpected T_STRING, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' \

in ~/maintenance/commandLine.inc on line 13

</pre>

This error occurs when update.php is run from php4.

Individuals who have their site hosted by providers who provide both php4 and php5 should take the following steps:

# from the command line, enter the command 'whereis php5'

# once you have discerned the location of the php5 path, list the contents of php5/bin directory

# once you've determined the name of the php executable (either php or php5), type in the entire path to execute update.php

Below is an example:

<pre style="overflow:auto;">

$ whereis php5

$ ls -la /usr/local/php5/bin

$ /usr/local/php5/bin/php update.php

</pre>

====What to do in case of 'register_argc_argv is set to false' error====

You may encounter the error:

<pre style="overflow:auto;">

Cannot get command line arguments, register_argc_argv is set to false

</pre>

# Go to ~/maintenance. Either edit an existing 'php.ini' file, or create one.

# Add a line as follows:

<pre style="overflow:auto;">

register_argc_argv=true

</pre>

# Re-run php update.php

{{Anchor|Web_updater}}

===Web browser===

{{MW 1.17|and after}}

: ''See also {{ll|Manual:update.php|update.php}}''

If your database is already big and in high production usage, then you should not be using the Web updater, e.g. because the update process will time out when the ''maximum_execution_time'' is reached. In that case you should use [[update.php]] from the command-line interface (not from the web). What exactly is "too big" depends on your server (e.g. on its performance, the load and on how long the maximum execution time of PHP allows the script to run). If your wiki is too big for the web updater and your hosting provider does not allow command-line access, then you need to migrate your wiki to another hosting account, preferably to one that does have shell access.

# Always [[Manual:Backing up a wiki|backup]] before performing database maintenance.

# Navigate your webbrowser to <tt>'''/mw-config/'''</tt>. For example, if your wiki is at <tt><nowiki>http://example.org/w/index.php</nowiki></tt>, then navigate to <tt><nowiki>http://example.org/w/mw-config/</nowiki></tt>.

# Select your language and click continue.

# The existing installation should be detected. Follow the instructions on the screen to upgrade it.<br/>If asked for the "upgrade key", open your {{ll|Manual:LocalSettings.php|LocalSettings.php}} file and look for the key assigned to {{ll|Manual:$wgUpgradeKey|$wgUpgradeKey}}.

It might happen that the web-updater does not seem to work: Instead of seeing the initial language selection screen, you might see an empty wiki page, possibly with some error message. In this case it is most likely that your webserver uses Rewrite Rules (most likely for [[Special:MyLanguage/Manual:Short URL|short URLs]]), which do not show you the updater at ''mw-config/'', but a wiki page at ''Mw-config/'', with capital "M". In this case, rename the ''.htaccess'' file for the time of the update. Then you should be able to access the web-updater.

{{ {{TNTN|Warning}} |If you use this method, make sure to '''change the name of the .htaccess file back''' after running the upgrade script! Otherwise short URLs and possibly other stuff will be broken!}}

== Test the update ==

Once the upgrade has been completed, browse to the wiki and check that the following operations work as expected:

* Viewing pages

* Editing pages

* Uploading a file

* Visit [[Special:Version]] and check that the version shown is correct and that the extensions are present.

== Frequently asked questions ==

<section begin=FAQ />

===How hard is it to upgrade?===

If the only file you have modified is {{ll|Manual:LocalSettings.php|LocalSettings.php}}, and you are upgrading from 1.5 or later, the process is very simple. The amount of human work involved is only a few minutes. The database schema changes will take an amount of time proportional to the size of your database — potentially hours for wikis with millions of pages, but for a more typical size of a few thousand pages, it is usually done in seconds.

Minor upgrades, within the same major version, say from 1.13.0 to 1.13.1, do not require any schema changes at all. You can just update the files. The database needs no update, hence it is not necessary to run the installer script.

Upgrading from 1.4 or earlier is potentially complicated because support for character sets other than UTF-8 was dropped, and the schema for storing bulk text changed. Please read the relevant section in the <tt>UPGRADE</tt> file.

Upgrading becomes difficult if you have modified our source code, and you don't want your changes to be overwritten. Tools such as [http://www.gnu.org/software/diffutils/diffutils.html diff], [http://www.gnu.org/software/patch/ patch], [http://meldmerge.org/ Meld] or [http://winmerge.org/ WinMerge] may be useful. There is also potential for trouble if you are using unmaintained extensions. Upgrade your extensions at the same time as you upgrade MediaWiki.

If you have modified the skin or use a custom skin you very likely will have to adjust it to work again with the new version of MediaWiki.

: {{TNT|Tip}} Instead of patching your "global" css and js (javascript) files everytime you can simply add the code to your MediaWiki:Common.js and MediaWiki:Common.css pages. As these are part of the database which will be reused when you upgrade, you will not have to patch the MediaWiki core files any more.

===How do I upgrade from a really old version? In one step, or in several steps?===

It depends: If you are '''upgrading from MediaWiki 1.4 or older''', you should upgrade to MediaWiki 1.5 first. If you are upgrading from a Latin-1 wiki, use upgrade1_5.php (found in MediaWiki 1.5) to convert the relevant parts of the database to UTF-8 ({{ll|Manual:$wgUseLatin1|$wgUseLatin1}} needs to be set to true in your {{ll|Manual:LocalSettings.php|LocalSettings.php}} for this to work). Next, run update.php, and then set the {{ll|Manual:$wgLegacyEncoding|$wgLegacyEncoding}} option in LocalSettings.php to the encoding previously used by the wiki (e.g. windows-1252). This is basically how Wikipedia and other Wikimedia Foundation sites were upgraded from MediaWiki 1.4 to 1.5 – see the [http://noc.wikimedia.org/conf/highlight.php?file=InitialiseSettings.php relevant settings file (warning: huge page!)] and some [[wikitech:1.5 upgrade|related notes at Wikitech]]. You may need to upgrade to MediaWiki 1.4 before running the upgrade1.5 script.

If you are '''upgrading from MediaWiki 1.5 or newer''', you can upgrade in one step, from your old version to the latest stable version. The vast majority of reports, as well as automated testing, indicate that doing it in one step works just fine. If you have trouble believing this, read [[mailarchive:mediawiki-l/2008-October/028975.html|this mailing list post]]. However, please note that when you update from old versions, chances that you will encounter PHP errors are bigger than when you upgrade from the version directly previous to the new version. You would have received these errors anyway, also if you had not skipped versions, but if you had each time done each single update. Only will you - when you skipped versions - get them all at the same time. This will make the upgrade more difficult, but do not forget that you did not have the trouble updating to the intermediate versions, which you skipped!

If '''upgrading from a MediaWiki version below 1.19''', you may need to add the sha1 field to the [[Special:MyLanguage/Manual:revision table|revision table]] manually before running the update script (see {{phabricator|T50820}} and a [[Thread:Project:Support desk/upgrade problems: 1.11 -- 1.21|relevant support desk thread]]).

===Should I back up first?===

Short answer: Yes.

Long answer: It depends on a) how much you value your data, b) how hard it is to create a backup and c) how confident you are with MySQL maintenance and administration.

An upgrade failure may leave your database in an inconsistent state, in between two versions. A PHP or MySQL error might happen during upgrade leaving your database partly upgraded. In such situations it may be possible to somehow fix this problem with much manual work. However, it will be ''way easier'' to just put a database backup from before running update.php in place and to continue with that. Otherwise you might have hours of - needless - work.

Recovery is often complex. Volunteers on the support forums are unlikely to be impressed if you neglect to make a backup and then need help to recover from upgrade-related corruption. A better outcome is if you can revert to your backup, and then [https://phabricator.wikimedia.org/maniphest/task/create/ report the bug against the corresponding MediaWiki project] in the upgrade process which caused the corruption.

===Can I keep my LocalSettings.php?===

Yes, but you may have to make some minor changes. The format of {{ll|Manual:LocalSettings.php|LocalSettings.php}} is largely backwards compatible. Changes which break LocalSettings.php compatibility will be documented in the "configuration changes" section of the [[Release notes|release notes]].

===Can my wiki stay online while it is upgrading?===

Generally yes, however Git may temporarily (for a few seconds) break it.

If you are upgrading between minor releases of MediaWiki, all you need to do is update the source files.

Note: the following assumes you have command line access. If you are upgrading between major releases of MediaWiki, the preferred procedure is as follows:

# Unpack the new version of MediaWiki into a new directory

# Prepare that new directory: copy your current LocalSettings.php from the old directory, copy any installed extensions and custom skins (if any).

# In the release notes for the new version, see if any changes need to be made to LocalSettings.php.

# Place the database in read-only mode by inserting the following variable into LocalSettings.php in the old directory - users will see this message if they attempt an edit during the upgrade process:<br/><code>{{ll|Manual:$wgReadOnly|$wgReadOnly}} = 'Upgrading to MediaWiki {{MW stable release number}}';</code>

# Run the [[Special:MyLanguage/Manual:Upgrading#Command_line|update script]] or the web updater in the new directory.<br/>

# Copy the images from the images sub-directory from the old directory to the new directory.

# Swap the old directory and the new directory.

===Why upgrade?===

:''Subscribe to [[mail:mediawiki-announce|mediawiki-announce]] to be notified of new releases.

Because it's [[#How hard is it to upgrade?|usually easy enough]], [[#How do I upgrade from a really old version? In one step, or in several steps?|a single step from your version to latest]] and also [[Special:MyLanguage/Manual:Upgrading#Web updater|via web]].

Recent releases receive security fixes to keep your wiki and your host safe from vandals, while old releases don't (see {{ll|Version lifecycle}}). That makes dozens good reasons to upgrade!

New major releases come with new features, which you might want to use: see the release notes for details. In case you need additional arguments to convince your bosses to let you upgrade from a pretty old version, here is a summary:

* Since 1.5, [[Release_notes/1.5#Smaller_changes_since_1.4|edits can be previewed before saving]] also as diff.

* Since 1.9, an [[Release_notes/1.9#Undo_revision|undo button]] is available.

* Since 1.12, [[Special:MyLanguage/Help:Patrolling|patrolling]] on [[Special:NewPages]] is much easier.

* Since 1.13, you can [[Special:MyLanguage/Help:Moving a page|rename]] (move) files.

* Since 1.14, you can [[Special:MyLanguage/Manual:$wgFixDoubleRedirects|fix double redirects]] automatically.

* Since 1.16, {{ll|InstantCommons}} is available.

* If you have appropriate caching, since 1.17 {{ll|ResourceLoader}} optimizes pageload speeds a lot.

* Since 1.17, [[MediaWiki_1.17/Category_sorting|category sorting makes sense!]] (especially for non-English letters); extended to 68 languages after [[MediaWiki_1.21|1.21]].

* Since [[MediaWiki 1.18|1.18]] and [[MediaWiki 1.19|1.19]], users of all languages and genders are correctly addressed by the interface and [[m:Help:Special_page#Logs|logs]] (before 1.15, no gender at all).

* In [[MediaWiki 1.19|1.19]] the skinning system was reworked making it easier to reuse parts of existing skins in your own skins.

* Since [[MediaWiki 1.20|1.20]], [[m:Help:Diff|diffs]] are better readable.

* In [[MediaWiki_1.21|1.21]] and [[MediaWiki 1.23|1.23]], email notifications become clearer and more predictable, making your wiki more effective.

* Since [[MediaWiki 1.22|1.22]], vandal fighting (patrolling) is less time-consuming.

See also the [https://bugs.wmflabs.org/buglist.cgi?columnlist=bug_severity%2Cshort_desc%2Ccomponent%2Cvotes%2Clongdescs.count%2Cversion%2Ctarget_milestone&known_name=Most%20voted%20fixes&list_id=360805&product=MediaWiki&query_based_on=Most%20voted%20fixes&query_format=advanced&resolution=FIXED&votes=3&votes_type=greaterthaneq list of the most voted fixed issues] on {{ll|Bugzilla}} up to 2014.

Also, in [[MediaWiki 1.18]] we started [[Special:MyLanguage/Suggestions for extensions to be integrated|bundling some vital extensions]], like a better editor and anti-vandalism tools ConfirmEdit and Nuke; more have been added in later releases.

<section end=FAQ />

== Гл. таксама ==

* Greg Sabino Mullane's Blog post provides some [http://blog.endpoint.com/2014/10/mediawiki-minor-upgrade-with-patches.html more detail about point release upgrades].

* [[Project:Support desk]] if you need help or something went wrong

* {{ll|Manual:Backing up a wiki}}

* {{ll|Manual:Restoring a wiki from backup}}

* {{ll|Manual:Moving a wiki}}

* {{ll|Manual:Restoring wiki code from cached HTML}} (if you don't have a successful backup)

* {{ll|Manual:Installing}}

[[Category:MediaWiki administration{{translation}}|{{PAGENAME}}]]

[[Category:MediaWiki for site admins{{translation}}]]

[[Category:MediaWiki development{{translation}}|Upgrading to *]]

[[Category:Upgrading{{translation}}|Upgrading to *]]

Show more