From 5b6acce822b1d3030797499f93401318028b70f5 Mon Sep 17 00:00:00 2001 From: "Florian Aders (EleRas)" Date: Tue, 7 Jun 2011 09:39:13 +0200 Subject: [PATCH] Fixed permission problem in apache, fixes #800 Signed-off-by: Florian Aders (EleRas) --- scripts/jobs/cron_tasks.inc.http.15.apache_fcgid.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/jobs/cron_tasks.inc.http.15.apache_fcgid.php b/scripts/jobs/cron_tasks.inc.http.15.apache_fcgid.php index e700fd47..7b697d91 100644 --- a/scripts/jobs/cron_tasks.inc.http.15.apache_fcgid.php +++ b/scripts/jobs/cron_tasks.inc.http.15.apache_fcgid.php @@ -44,9 +44,9 @@ class apache_fcgid extends apache $php_options_text.= ' SetHandler php5-fastcgi'. "\n"; $php_options_text.= ' Action php5-fastcgi /fastcgiphp' . "\n"; $php_options_text.= ' Options +ExecCGI' . "\n"; - $php_options_text.= ' Order allow,deny' . "\n"; - $php_options_text.= ' allow from all' . "\n"; $php_options_text.= ' ' . "\n"; + $php_options_text.= ' Order allow,deny' . "\n"; + $php_options_text.= ' allow from all' . "\n"; $php_options_text.= ' ' . "\n"; $php_options_text.= ' Alias /fastcgiphp ' . makeCorrectDir($domain['documentroot']) . 'fpm.external' . "\n"; } @@ -69,9 +69,9 @@ class apache_fcgid extends apache $php_options_text.= ' FCGIWrapper ' . $php->getInterface()->getStarterFile() . ' .' . $file_extension . "\n"; } $php_options_text.= ' Options +ExecCGI' . "\n"; - $php_options_text.= ' Order allow,deny' . "\n"; - $php_options_text.= ' allow from all' . "\n"; $php_options_text.= ' ' . "\n"; + $php_options_text.= ' Order allow,deny' . "\n"; + $php_options_text.= ' allow from all' . "\n"; $php_options_text.= ' ' . "\n"; } }