Différences entre les versions de « Utilisateur:Jluc/mediawiki »
De Entre Amis
m (Jluc a déplacé la page Utilisateur:Jlq/mediawiki vers Utilisateur:Jluc/mediawiki : Page déplacée automatiquement lorsque l’utilisateur « Jlq » est devenu « Jluc ») |
|||
(Une version intermédiaire par le même utilisateur non affichée) | |||
Ligne 18 : | Ligne 18 : | ||
# télécharger la nouvelle version <code>wget https://releases.wikimedia.org/mediawiki/1.19/mediawiki-1.19.22.patch.gz</code> dans le dossier <code>monWiki</code> ; | # télécharger la nouvelle version <code>wget https://releases.wikimedia.org/mediawiki/1.19/mediawiki-1.19.22.patch.gz</code> dans le dossier <code>monWiki</code> ; | ||
# décompresser l'archive <code>gunzip mediawiki-1.19.22.patch.gz</code> ; | # décompresser l'archive <code>gunzip mediawiki-1.19.22.patch.gz</code> ; | ||
− | # use <code>patch -p 1 --dry-run</code> to check what will be changed : <code>patch -p 1 --dry-run < mediawiki-1.19.22.patch | + | # use <code>patch -p 1 --dry-run</code> to check what will be changed : <code>patch -p 1 --dry-run < mediawiki-1.19.22.patch</code> ; |
− | # if all is well, run patch again without <code>--dry-run</code> : <code>patch -p 1 < mediawiki-1.19.22.patch | + | # if all is well, run patch again without <code>--dry-run</code> : <code>patch -p 1 < mediawiki-1.19.22.patch</code> ; |
# check your <code>Special:Version</code> and you should see the new version number in place. | # check your <code>Special:Version</code> and you should see the new version number in place. |
Version actuelle datée du 19 avril 2021 à 10:42
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.