aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--install/INSTALL.txt4
-rwxr-xr-xmod/setup.php20
2 files changed, 23 insertions, 1 deletions
diff --git a/install/INSTALL.txt b/install/INSTALL.txt
index ee029f0ee..500abb0f9 100644
--- a/install/INSTALL.txt
+++ b/install/INSTALL.txt
@@ -74,11 +74,13 @@ directory/path component in the URL) is REQUIRED.
git pull
- - make sure folder *view/tpl/smarty3* exists and is writable by webserver
+ - make sure folders *view/tpl/smarty3* and *store* exist and are writable by webserver
mkdir view/tpl/smarty3
+ mkdir store
chmod 777 view/tpl/smarty3
+ chmod 777 store
[This permission (777) is very dangerous and if you have sufficient
privilege and knowledge you should make this directory writeable only
diff --git a/mod/setup.php b/mod/setup.php
index 245508683..ca5566578 100755
--- a/mod/setup.php
+++ b/mod/setup.php
@@ -228,6 +228,8 @@ function setup_content(&$a) {
check_smarty3($checks);
+ check_store($checks);
+
check_keys($checks);
if(x($_POST,'phpath'))
@@ -515,6 +517,24 @@ function check_smarty3(&$checks) {
}
+function check_store(&$checks) {
+ $status = true;
+ $help = "";
+
+ @mkdir('store',STORAGE_DEFAULT_PERMISSIONS);
+
+ if( !is_writable('store') ) {
+
+ $status=false;
+ $help = t('Red uses the store directory to save uploaded files. The web server needs to have write access to the store directory under the Red top level folder') . EOL;
+ $help .= t('Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder.').EOL;
+ }
+
+ check_add($checks, t('store is writable'), $status, true, $help);
+
+}
+
+
function check_htaccess(&$checks) {
$a = get_app();
$status = true;