From 59e91bc8931a386974a3817e9849aad1ca7fc186 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20L=C5=93uillet?= Date: Wed, 21 Oct 2015 14:14:51 +0200 Subject: add docs --- docs/en/Administrator/sessions.rst | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 docs/en/Administrator/sessions.rst (limited to 'docs/en/Administrator/sessions.rst') diff --git a/docs/en/Administrator/sessions.rst b/docs/en/Administrator/sessions.rst new file mode 100644 index 00000000..7dbae257 --- /dev/null +++ b/docs/en/Administrator/sessions.rst @@ -0,0 +1,26 @@ +Session issues +============== + +If you end up disconnected even while checking the *Stay signed in +checkbox*, please run the following commands as root (or with sudo) : + +:: + + mkdir /var/lib/wallabag-sessions + chown www-data:www-data /var/lib/wallabag-sessions + +*NOTE : The www-data user and group may not exist, you may use +``chown http:http /var/lib/wallabag-sessions`` instead* + +Then, using apache add: +``php_admin_value session.save_path /var/lib/wallabag-sessions`` to your +apache vhost, for instance ``wallabag-apache.conf`` Finally, restart +apache, for instance like this : ``/etc/init.d/apache2 restart`` + +If you’re using nginx, add +``php_admin_value[session.save_path] = /var/lib/wallabag-sessions`` in +your nginx configuration file. Then, restart nginx : +``/etc/init.d/nginx restart`` + +*NOTE : If you’re using systemd, you should do +``systemctl restart apache2`` (or nginx).* -- cgit v1.2.3