add write access to view/smarty3/ as a requirement for the installer

This commit is contained in:
Zach Prezkuta 2012-12-24 07:59:46 -07:00
parent e5dac2d387
commit f74a443c1b
1 changed files with 18 additions and 0 deletions

View File

@ -177,6 +177,8 @@ function install_content(&$a) {
check_htconfig($checks); check_htconfig($checks);
check_smarty3($checks);
check_keys($checks); check_keys($checks);
if(x($_POST,'phpath')) if(x($_POST,'phpath'))
@ -441,6 +443,22 @@ function check_htconfig(&$checks) {
} }
function check_smarty3(&$checks) {
$status = true;
$help = "";
if( !is_writable('view/smarty3') ) {
$status=false;
$help = t('Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering.') .EOL;
$help .= t('In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica 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;
$help .= t('Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains.').EOL;
}
check_add($checks, t('view/smarty3 is writable'), $status, true, $help);
}
function check_htaccess(&$checks) { function check_htaccess(&$checks) {
$a = get_app(); $a = get_app();
$status = true; $status = true;