Utilisateur: Jluc/mediawiki
De Entre Amis
< Utilisateur:Jluc(Redirigé depuis Utilisateur:Jlq/mediawiki)
Mettre à jour Mediawiki
- se connecter sur
site
en tant quecalife
; - sauvegarder
AdminSettings.php
,LocalSettings.php
et le dossiermonWiki
; - déposer la nouvelle version
mediawiki-1.16.3.tar.gz
dans le dossier~/mediawiki
; - mettre à jour :
tar xvzf mediawiki-1.16.3.tar.gz -C /le/chemin/vers/monWiki/ --strip-components=1
; - mettre à jour les bases de données :
cd /le/chemin/vers/monWiki/maintenance/ ; php update.php
; - 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.
Patcher Mediawiki
- se connecter sur
site
en tant quecalife
; - sauvegarder
AdminSettings.php
,LocalSettings.php
et le dossiermonWiki
; - télécharger la nouvelle version
wget https://releases.wikimedia.org/mediawiki/1.19/mediawiki-1.19.22.patch.gz
dans le dossiermonWiki
; - décompresser l'archive
gunzip mediawiki-1.19.22.patch.gz
; - use
patch -p 1 --dry-run
to check what will be changed :patch -p 1 --dry-run < mediawiki-1.19.22.patch
; - if all is well, run patch again without
--dry-run
:patch -p 1 < mediawiki-1.19.22.patch
; - check your
Special:Version
and you should see the new version number in place.