aboutsummaryrefslogtreecommitdiffhomepage
path: root/docs/en/user/upgrade-2.1.x-2.1.y.rst
diff options
context:
space:
mode:
authorJeremy Benoist <jeremy.benoist@gmail.com>2016-10-11 21:01:30 +0200
committerJeremy Benoist <jeremy.benoist@gmail.com>2016-10-11 21:01:30 +0200
commite4cf672ccf61689ba28c2e89fc55f83167800b18 (patch)
tree5dc22c97797bdcdd0a3d2a7e182410f04a748c1e /docs/en/user/upgrade-2.1.x-2.1.y.rst
parente57df5611fe82ce61a71d51c762ee9296f18c3ac (diff)
parentdbe94e73a9eaf3acb250812913b0303b35d01a2e (diff)
downloadwallabag-e4cf672ccf61689ba28c2e89fc55f83167800b18.tar.gz
wallabag-e4cf672ccf61689ba28c2e89fc55f83167800b18.tar.zst
wallabag-e4cf672ccf61689ba28c2e89fc55f83167800b18.zip
Merge remote-tracking branch 'origin/master' into 2.2
Diffstat (limited to 'docs/en/user/upgrade-2.1.x-2.1.y.rst')
-rw-r--r--docs/en/user/upgrade-2.1.x-2.1.y.rst35
1 files changed, 35 insertions, 0 deletions
diff --git a/docs/en/user/upgrade-2.1.x-2.1.y.rst b/docs/en/user/upgrade-2.1.x-2.1.y.rst
new file mode 100644
index 00000000..575f4ba9
--- /dev/null
+++ b/docs/en/user/upgrade-2.1.x-2.1.y.rst
@@ -0,0 +1,35 @@
1Upgrading from 2.1.x to 2.1.y
2=============================
3
4Upgrade on a dedicated web server
5---------------------------------
6
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.1.2`` by the last release number):
8
9::
10
11 rm -rf var/cache/*
12 git fetch origin
13 git fetch --tags
14 git checkout 2.1.2 --force
15 SYMFONY_ENV=prod composer install --no-dev -o --prefer-dist
16 php bin/console cache:clear --env=prod
17
18Upgrade on a shared hosting
19---------------------------
20
21Backup your ``app/config/parameters.yml`` file.
22
23Download the last release of wallabag:
24
25.. code-block:: bash
26
27 wget http://wllbg.org/latest-v2-package && tar xvf latest-v2-package
28
29(md5 hash of the 2.1.1 package: ``9584a3b60a2b2a4de87f536548caac93``)
30
31Extract the archive in your wallabag folder and replace ``app/config/parameters.yml`` with yours.
32
33If you use SQLite, you must also copy your ``data/`` folder inside the new installation.
34
35Empty ``var/cache`` folder.