From 352e4dc21b77410ffbf01cca499b86709b4be43e Mon Sep 17 00:00:00 2001 From: friendica Date: Wed, 8 Jan 2014 18:20:47 -0800 Subject: add store directory write check to install checks --- mod/setup.php | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) (limited to 'mod') 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; -- cgit v1.2.3