From fc8c3c086ca70a513cd3fff39275fcf035cead5a Mon Sep 17 00:00:00 2001 From: Mohamed Rashid Date: Thu, 21 Nov 2013 20:34:54 +0530 Subject: [PATCH] fixed #37 --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index cd4c7088fe..391e29e7d9 100644 --- a/README.md +++ b/README.md @@ -74,11 +74,11 @@ Use the following command to create your default user, user groups and run all t You'll need to make sure that the app/storage directory is writable by your webserver, since caches and log files get written there. You should use the minimum permissions available for writing, based on how you've got your webserver configured. - chown -R 755 app/storage + chmod -R 755 app/storage If you still run into a permissions error, you may need to increase the permissions to 775, or twiddle your user/group permissions on your server. - chown -R 775 app/storage + chmod -R 775 app/storage -----