From 0c538ff1aec172eaa123410bd5d77e2a4bbf52af Mon Sep 17 00:00:00 2001 From: Duncan Sommerville Date: Wed, 17 Sep 2014 13:21:08 -0400 Subject: [PATCH] Added chown call to properly permission stor directory --- install_minimal/include/AirtimeInstall.php | 1 + 1 file changed, 1 insertion(+) diff --git a/install_minimal/include/AirtimeInstall.php b/install_minimal/include/AirtimeInstall.php index 4d037596e..e6a90915e 100644 --- a/install_minimal/include/AirtimeInstall.php +++ b/install_minimal/include/AirtimeInstall.php @@ -177,6 +177,7 @@ class AirtimeInstall } echo "* Giving Apache permission to access $rp".PHP_EOL; + $success = chown($rp, $CC_CONFIG["webServerUser"]); $success = chgrp($rp, $CC_CONFIG["webServerUser"]); $success = chmod($rp, 0775); }