MediaWiki REL1_31
README
Go to the documentation of this file.
1== Localisation Update ==
2Localisation Update extension can update the MediaWiki messages at any time,
3without needing to upgrade the MediaWiki software.
4
5For more information see:
6 https://www.mediawiki.org/wiki/Extension:LocalisationUpdate
7
8== Installation ==
91. Add the following to LocalSettings.php of your MediaWiki setup:
10
11 wfLoadExtension( 'LocalisationUpdate' );
12 $wgLocalisationUpdateDirectory = "$IP/cache";
13
142. Create a cache folder in the installation directory, and be sure the server
15has permissions to write on it.
16
17If localization updates don't seem to come through, you may need to run,
18
19 php maintenance/rebuildLocalisationCache.php --force.
20
213. Whenever you want to run an update, run,
22
23 php extensions/LocalisationUpdate/update.php
24
25For detailed help, see:
26
27 php extensions/LocalisationUpdate/update.php --help
28
294. If you are on Unix like system, you should add LocalisationUpdate to
30crontab:
31
32 crontab -e
33 # Add the following line
34 @daily php /path/to/your/wiki/extensions/LocalisationUpdate/update.php --quiet