From 314553487bd1e2fef67e98bae273688514441910 Mon Sep 17 00:00:00 2001 From: Albert Santoni Date: Thu, 5 Jun 2014 15:10:25 -0400 Subject: [PATCH] CC-5797: Install should give www-data permissions on stor * chmod command was bugged due to extra 0 (read the docs) --- install_minimal/include/AirtimeInstall.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install_minimal/include/AirtimeInstall.php b/install_minimal/include/AirtimeInstall.php index fd37edb22..4d037596e 100644 --- a/install_minimal/include/AirtimeInstall.php +++ b/install_minimal/include/AirtimeInstall.php @@ -178,7 +178,7 @@ class AirtimeInstall echo "* Giving Apache permission to access $rp".PHP_EOL; $success = chgrp($rp, $CC_CONFIG["webServerUser"]); - $success = chmod($rp, 02775); + $success = chmod($rp, 0775); } }