aboutsummaryrefslogtreecommitdiffhomepage
path: root/docs/en/user/upgrade-2.0.x-2.0.y.rst
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2016-10-10 11:21:20 +0200
committerNicolas LÅ“uillet <nicolas@loeuillet.org>2016-10-10 11:21:20 +0200
commit7c1ce28342c85abb21dc79b9d22be35c0c09891b (patch)
treeed27756ae40559f42ff796064f1c63691f494bcd /docs/en/user/upgrade-2.0.x-2.0.y.rst
parent7c1225347db8b516cc268709939f6b359bc283c1 (diff)
downloadwallabag-7c1ce28342c85abb21dc79b9d22be35c0c09891b.tar.gz
wallabag-7c1ce28342c85abb21dc79b9d22be35c0c09891b.tar.zst
wallabag-7c1ce28342c85abb21dc79b9d22be35c0c09891b.zip
Update upgrade documentation
Diffstat (limited to 'docs/en/user/upgrade-2.0.x-2.0.y.rst')
-rw-r--r--docs/en/user/upgrade-2.0.x-2.0.y.rst35
1 files changed, 0 insertions, 35 deletions
diff --git a/docs/en/user/upgrade-2.0.x-2.0.y.rst b/docs/en/user/upgrade-2.0.x-2.0.y.rst
deleted file mode 100644
index 3391c2cd..00000000
--- a/docs/en/user/upgrade-2.0.x-2.0.y.rst
+++ /dev/null
@@ -1,35 +0,0 @@
1Upgrade from 2.0.x to 2.0.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.0.8`` 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.0.8
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.0.8 package: ``4f84c725d1d6e3345eae0a406115e5ff``)
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.