From 3525cd3ca0b0108a51396e46bffaf2755d6d0007 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20Rubio?= Date: Fri, 5 Aug 2016 07:35:06 +0200 Subject: [PATCH] Fix file_permissions.rst. Cache and logs folders were not pointing to the path for the 3.x version. --- setup/file_permissions.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup/file_permissions.rst b/setup/file_permissions.rst index 63953f83ef0..7786e63e6a6 100644 --- a/setup/file_permissions.rst +++ b/setup/file_permissions.rst @@ -31,8 +31,8 @@ needed permissions: .. code-block:: bash - $ rm -rf app/cache/* - $ rm -rf app/logs/* + $ rm -rf var/cache/* + $ rm -rf var/logs/* $ HTTPDUSER=`ps axo user,comm | grep -E '[a]pache|[h]ttpd|[_]www|[w]ww-data|[n]ginx' | grep -v root | head -1 | cut -d\ -f1` $ sudo chmod -R +a "$HTTPDUSER allow delete,write,append,file_inherit,directory_inherit" var