mirror of
https://github.com/wallabag/wallabag.git
synced 2025-01-26 00:28:10 +00:00
Merge pull request #2038 from foxmask/master
new details in the doc about the rights access again;)
This commit is contained in:
commit
1875afaeff
2 changed files with 45 additions and 0 deletions
|
@ -252,3 +252,25 @@ This is due to the fact that we will need to grant the same rights access on the
|
||||||
.. code-block:: bash
|
.. code-block:: bash
|
||||||
|
|
||||||
chown -R www-data:www-data /var/www/wallabag/var
|
chown -R www-data:www-data /var/www/wallabag/var
|
||||||
|
|
||||||
|
It has to be the same for the following folders
|
||||||
|
|
||||||
|
* /var/www/wallabag/bin/
|
||||||
|
* /var/www/wallabag/app/config/
|
||||||
|
* /var/www/wallabag/vendor/
|
||||||
|
|
||||||
|
by entering
|
||||||
|
|
||||||
|
.. code-block:: bash
|
||||||
|
|
||||||
|
chown -R www-data:www-data /var/www/wallabag/bin
|
||||||
|
chown -R www-data:www-data /var/www/wallabag/app/config
|
||||||
|
chown -R www-data:www-data /var/www/wallabag/vendor
|
||||||
|
|
||||||
|
otherwise, sooner or later you will meet this error messages
|
||||||
|
|
||||||
|
.. code-block:: bash
|
||||||
|
|
||||||
|
Unable to write to the "bin" directory.
|
||||||
|
file_put_contents(app/config/parameters.yml): failed to open stream: Permission denied
|
||||||
|
file_put_contents(/.../wallabag/vendor/autoload.php): failed to open stream: Permission denied
|
||||||
|
|
|
@ -249,3 +249,26 @@ Cela est dû au fait qu'il faut aussi octroyer les mêmes droits d'accès au dos
|
||||||
.. code-block:: bash
|
.. code-block:: bash
|
||||||
|
|
||||||
chown -R www-data:www-data /var/www/wallabag/var
|
chown -R www-data:www-data /var/www/wallabag/var
|
||||||
|
|
||||||
|
Il en est de même pour les dossiers suivants :
|
||||||
|
|
||||||
|
* /var/www/wallabag/bin/
|
||||||
|
* /var/www/wallabag/app/config/
|
||||||
|
* /var/www/wallabag/vendor/
|
||||||
|
|
||||||
|
en tapant
|
||||||
|
|
||||||
|
.. code-block:: bash
|
||||||
|
|
||||||
|
chown -R www-data:www-data /var/www/wallabag/bin
|
||||||
|
chown -R www-data:www-data /var/www/wallabag/app/config
|
||||||
|
chown -R www-data:www-data /var/www/wallabag/vendor
|
||||||
|
|
||||||
|
sinon lors de la mise à jour vous finirez par rencontrer les erreurs suivantes :
|
||||||
|
|
||||||
|
|
||||||
|
.. code-block:: bash
|
||||||
|
|
||||||
|
Unable to write to the "bin" directory.
|
||||||
|
file_put_contents(app/config/parameters.yml): failed to open stream: Permission denied
|
||||||
|
file_put_contents(/.../wallabag/vendor/autoload.php): failed to open stream: Permission denied
|
||||||
|
|
Loading…
Reference in a new issue