]> git.immae.eu Git - github/wallabag/wallabag.git/blame - docs/en/user/upgrade-2.0.x-2.0.y.rst
Ensure cache is clear before upgrading
[github/wallabag/wallabag.git] / docs / en / user / upgrade-2.0.x-2.0.y.rst
CommitLineData
eef8aeec
NL
1Upgrade from 2.0.x to 2.0.y
2===========================
12d3bbcc 3
4Upgrade on a dedicated web server
5---------------------------------
6
eef8aeec 7The last release is published on https://www.wallabag.org/pages/download-wallabag.html. In order to upgrade your wallabag installation and get the last version, run the following commands in you wallabag folder (replace ``2.0.8`` by the last release number):
bba9907d 8
12d3bbcc 9::
10
88d8125a 11 rm -rf var/cache/*
12d3bbcc 12 git fetch origin
13 git fetch --tags
eef8aeec
NL
14 git checkout 2.0.8
15 SYMFONY_ENV=prod composer install --no-dev -o --prefer-dist
084fb0d3 16 php bin/console cache:clear --env=prod
12d3bbcc 17
94d1dae4 18Upgrade on a shared hosting
12d3bbcc 19---------------------------
20
bba9907d
NL
21Backup your ``app/config/parameters.yml`` file.
22
94d1dae4 23Download the last release of wallabag:
bba9907d
NL
24
25.. code-block:: bash
26
27 wget http://wllbg.org/latest-v2-package && tar xvf latest-v2-package
28
eef8aeec 29(md5 hash of the 2.0.8 package: ``4f84c725d1d6e3345eae0a406115e5ff``)
94d1dae4 30
bba9907d 31Extract the archive in your wallabag folder and replace ``app/config/parameters.yml`` with yours.
12d3bbcc 32
33If you use SQLite, you must also copy your ``data/`` folder inside the new installation.
34
35Empty ``var/cache`` folder.