only generate preview output when the request is actually a preview
[mediawiki.git] / UPGRADE
blob5d2b36ab68496793aa86ccb259001a9b1566fe12
1 This file provides an overview of the MediaWiki upgrade process. For help with
2 specific problems, check
4 * the documentation at http://meta.wikimedia.org
5 * the documentation at http://www.mediawiki.org
6 * the mediawiki-l mailing list archive at
7   http://mail.wikipedia.org/pipermail/mediawiki-l
8 * the bug tracker at http://bugzilla.wikimedia.org
10 for information and workarounds to common issues.
12 == Overview ==
14 Comprehensive documentation on upgrading to the latest version of the software
15 is available at http://www.mediawiki.org/wiki/Manual:Upgrading_MediaWiki.
17 === Consult the release notes ===
19 Before doing anything, stop and consult the release notes supplied with the new
20 version of the software. This detail bug fixes, new features and functionality,
21 and any particular points that may need to be noted during the upgrade
22 procedure.
24 === Backup first ===
26 It is imperative that, prior to attempting an upgrade of the database schema,
27 you take a complete backup of your wiki database and files and verify it. While
28 the upgrade scripts are somewhat robust, there is no guarantee that things will
29 not fail, leaving the database in an inconsistent state.
31 Refer to the MySQL or Postgres documentation for information on backing up a 
32 database. For information on making copies of files, consult the documentation 
33 for your operating system.
35 === Perform the file upgrade ===
37 Having downloaded the desired new version of the software, either as a package
38 from SourceForge, or via an export from Subversion, decompress the files as
39 needed, and replace the existing MediaWiki files with the new.
41 You should preserve:
43 * The LocalSettings.php file
44 * The AdminSettings.php file, where it exists
45 * The extensions directory
46 * The images directory
48 If using an alternative uploads directory, preserve this; and if using custom
49 skins, preserve these too. The core code is now updated.
51 === Perform the database upgrade ===
53 You will need an AdminSettings.php file set up in the correct format; see
54 AdminSettings.sample in the wiki root for more information and examples.
56 From the command line, browse to the maintenance directory and run the 
57 update.php script to check and update the schema. This will insert missing
58 tables, update existing tables, and move data around as needed. In most cases,
59 this is successful and nothing further needs to be done.
61 === Check configuration settings ===
63 The names of configuration variables, and their default values and purposes,
64 can change between release branches, e.g. $wgDisableUploads in 1.4 is replaced
65 with $wgEnableUploads in later versions. When upgrading, consult the release
66 notes to check for configuration changes which would alter the expected
67 behaviour of MediaWiki.
69 === Test ===
71 It makes sense to test your wiki immediately following any kind of maintenance
72 procedure, and especially after upgrading; check that page views and edits work
73 normally and that special pages continue to function, etc. and correct errors
74 and quirks which reveal themselves.
76 == Upgrading from 1.7 wikis ==
78 $wgDefaultUserOptions now contains all the defaults, not only overrides.
79 If you're setting this as a complete array(), you may need to change it
80 to set only specific items as recommended in DefaultSettings.php.
82 == Upgrading from 1.6 wikis ==
84 $wgLocalTZoffset was in hours, it is now using minutes.
85 Link autonumbering got fixed (#5918) for protocols other than http.
86  - 'irc://irc.server.tld/' render as a link with a chat icon
87  - '[irc://irc.server.tld]' render as an autonumbered link: [1]
89 == Upgrading from pre-1.5 wikis ==
91 Major changes have been made to the schema from 1.4.x. The updater
92 has not been fully tested for all conditions, and might well break.
94 On a large site, the schema update might take a long time. It might
95 explode, or leave your database half-done or otherwise badly hurting.
97 Among other changes, note that Latin-1 encoding (ISO-8859-1) is
98 no longer supported. Latin-1 wikis will need to be upgraded to
99 UTF-8; an experimental command-line upgrade helper script,
100 'upgrade1_5.php', can do this -- run it prior to 'update.php' or
101 the web upgrader.
103 If you absolutely cannot make the UTF-8 upgrade work, you can try
104 doing it by hand: dump your old database, convert the dump file
105 using iconv as described here: 
106 http://portal.suse.com/sdb/en/2004/05/jbartsh_utf-8.html
107 and then reimport it. You can also convert filenames using convmv,
108 but note that the old directory hashes will no longer be valid,
109 so you will also have to move them to new destinations.
111 Message changes:
112 * A number of additional UI messages have been chagned from HTML to
113   wikitext, and will need to be manually fixed if customized.
115 === Configuration changes from 1.4.x: ===
117 $wgDisableUploads has been replaced with $wgEnableUploads.
119 $wgWhitelistAccount has been replaced by the 'createaccount' permission
120 key in $wgGroupPermissions. To emulate the old effect of setting:
121   $wgWhitelistAccount['user'] = 0;
122 set:
123   $wgGroupPermissions['*']['createaccount'] = false;
125 $wgWhitelistEdit has been replaced by the 'edit' permission key.
126 To emulate the old effect of setting:
127   $wgWhitelistEdit = true;
128 set:
129   $wgGroupPermissions['*']['edit'] = false;
131 If $wgWhitelistRead is set, you must also disable the 'read' permission
132 for it to take affect on anonymous users:
133   $wgWhitelistRead = array( "Main Page", "Special:Userlogin" );
134   $wgGroupPermissions['*']['read'] = false;
136 Note that you can disable/enable several other permissions by modifying
137 this configuration array in your LocalSettings.php; see DefaultSettings.php
138 for the complete default permission set.
140 If using Memcached, you must enabled it differently now:
141   $wgUseMemCached = true;
142 should be replaced with:
143   $wgMainCacheType = CACHE_MEMCACHED;
146 === Web installer ===
148 You can use the web-based installer wizard if you first remove the
149 LocalSettings.php (and AdminSettings.php, if any) files; be sure to
150 give the installer the same information as you did on the original
151 install (language/encoding, database name, password, etc). This will
152 also generate a fresh LocalSettings.php, which you may need to customize.
154 You may change some settings during the install, but be very careful!
155 Changing the encoding in particular will generally leave you with a
156 lot of corrupt pages, particularly if your wiki is not in English.
158 === Command-line upgrade ===
160 Additionally, as of 1.4.0 you can run an in-place upgrade script from
161 the command line, keeping your existing LocalSettings.php. This requires
162 that you create an AdminSettings.php giving an appropriate database user
163 and password with privileges to modify the database structure.
165 Once the new files are in place, go into the maintenance subdirectory and
166 run the script:
168   php update.php
170 See caveats below on upgrading from 1.3.x or earlier.
173 == Backups! ==
175 To upgrade an existing MediaWiki installation, first BACK UP YOUR WIKI!
176 If something goes wrong, you want to be able to start again.
178 Your image files, configuration, etc can simply be copied or archived as
179 you would any other files. (Make sure that the contents of your
180 LocalSettings.php are not accidentally made public, as this contains
181 a database password.)
183 To back up the database, use the tools provided by your service provider
184 (if applicable) or the standard mysqldump or pg_dump programs.
186 For general help on mysqldump:
187 http://dev.mysql.com/doc/mysql/en/mysqldump.html
189 WARNING: If using MySQL 4.1.x, mysqldump's charset conversion may in
190 some cases damage data in your wiki. If necessary, set the charset
191 option to 'latin1' to avoid the conversion. Fore more info see:
192 http://mail.wikipedia.org/pipermail/wikitech-l/2004-November/026359.html
194 For general help on pg_dump:
195 http://www.postgresql.org/docs/current/static/app-pgdump.html
198 == Caveats ==
200 === Postgres ===
202 Postgres support is new, and much of the upgrade instructions may 
203 not apply. The schema was changed significantly from 1.7 to 1.8, 
204 so you will need to at least use the update.php or web installer, 
205 as described above.
208 === Upgrading from 1.4.2 or earlier ===
210 1.4.3 has added new fields to the sitestats table. These fields are
211 optional and help to speed Special:Statistics on large sites. If you
212 choose not to run the database upgrades, everything will continue to
213 work in 1.4.3.
215 You can apply the update by running maintenance/update.php, or
216 manually run the SQL commands from this file:
217   maintenance/archives/patch-ss_total_articles.sql
220 === Upgrading from 1.4rc1 or earlier betas ===
222 The logging table has been altered from 1.4beta4 to 1.4beta5
223 and again in 1.4.0 final. Copy in the new files and use the web
224 installer to upgrade, or the command-line maintenance/update.php.
226 If you cannot use the automated installers/updaters, you may
227 update the table by manually running the SQL commands in these
228 files:
229    maintenance/archives/patch-log_params.sql
230    maintenance/archives/patch-logging-title.sql
233 === Upgrading from 1.3.x ===
235 This should generally go smoothly.
237 If you keep your LocalSettings.php, you may need to change the style paths
238 to match the newly rearranged skin modules. Change these lines:
239   $wgStylePath        = "$wgScriptPath/stylesheets";
240   $wgStyleDirectory   = "$IP/stylesheets";
241   $wgLogo             = "$wgStylePath/images/wiki.png";
243 to this:
244   $wgStylePath        = "$wgScriptPath/skins";
245   $wgStyleDirectory   = "$IP/skins";
246   $wgLogo             = "$wgStylePath/common/images/wiki.png";
248 As well as new messages, the processing of some messages has changed.
249 If you have customized them, please compare the new format using
250 Special:Allmessages or the relevant LanguageXX.php files:
251   copyrightwarning
252   dberrortext
253   editingcomment  (was named commentedit)
254   editingsection  (was named sectionedit)
255   numauthors
256   numedits
257   numtalkauthors
258   numtalkedits
259   numwatchers
260   protectedarticle
261   searchresulttext
262   showhideminor
263   unprotectedarticle
265 Note that the 1.3 beta releases included a potential vulnerability if PHP
266 is configured with register_globals on and the includes directory is
267 served to the web. For general safety, turn register_globals *off* if you
268 don't _really_ need it for another package.
270 If your hosting provider turns it on and you can't turn it off yourself,
271 send them a kind note explaining that it can expose their servers and their
272 customers to attacks.
275 === Upgrading from 1.2.x ===
277 If you've been using the MediaWiki: namespace for custom page templates,
278 note that things are a little different. The Template: namespace has been
279 added which is more powerful -- templates can include parameters for
280 instance.
282 If you were using custom MediaWiki: entries for text inclusions, they
283 will *not* automatically be moved to Template: entries at upgrade time.
284 Be sure to go through and check that everything is working properly;
285 you can move them manually or you can try using moveCustomMessages.php
286 in maintenance/archives to do it automatically, but this might break things.
288 Also, be sure to pick the correct character encoding -- some languages were
289 only available in Latin-1 on 1.2.x and are now available for Unicode as well.
290 If you want to upgrade an existing wiki from Latin-1 to Unicode you'll have
291 to dump the database to SQL, run it through iconv or another conversion tool,
292 and restore it. Sorry.
295 === Upgrading from 1.1.x or earlier ===
297 This is less thoroughly tested, but should work.
299 You need to specify the *admin* database username and password to the
300 installer in order for it to successfully upgrade the database structure.
301 You may wish to manually change the GRANTs later.
303 If you have a very old database (earlier than organized MediaWiki releases
304 in late August 2003) you may need to manually run some of the update SQL
305 scripts in maintenance/archives before the installer is able to pick up
306 with remaining updates.
309 === Upgrading from UseModWiki or old "phase 2" Wikipedia code ===
311 There is a semi-maintained UseModWiki to MediaWiki conversion script at
312 maintenance/importUseModWiki.php; it may require tweaking and customization
313 to work for you.
315 Install a new MediaWiki first, then use the conversion script which will
316 output SQL statements; direct these to a file and then run that into your
317 database.
319 You will have to rebuild the links tables etc after importing.