From 0ca34daf76c22d08f0e937e0ead1c10719c73eef Mon Sep 17 00:00:00 2001 From: Tilman Klaeger Date: Mon, 30 Sep 2013 18:35:20 +0200 Subject: [PATCH] Changing SetHandler to AddHandler again, works for me on my system. --- scripts/jobs/cron_tasks.inc.http.10.apache.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/jobs/cron_tasks.inc.http.10.apache.php b/scripts/jobs/cron_tasks.inc.http.10.apache.php index 4b62d08f..0e6426e2 100644 --- a/scripts/jobs/cron_tasks.inc.http.10.apache.php +++ b/scripts/jobs/cron_tasks.inc.http.10.apache.php @@ -242,7 +242,7 @@ class apache $this->virtualhosts_data[$vhosts_filename].= ' ' . "\n"; $file_extensions = explode(' ', $phpconfig['file_extensions']); $this->virtualhosts_data[$vhosts_filename].= ' ' . "\n"; - $this->virtualhosts_data[$vhosts_filename].= ' SetHandler fcgid-script' . "\n"; + $this->virtualhosts_data[$vhosts_filename].= ' AddHandler fcgid-script' . "\n"; foreach ($file_extensions as $file_extension) { $this->virtualhosts_data[$vhosts_filename].= ' FcgidWrapper ' . $starter_filename . ' .' . $file_extension . "\n"; } @@ -284,7 +284,7 @@ class apache $this->virtualhosts_data[$vhosts_filename] .= ' ' . "\n"; $file_extensions = explode(' ', $phpconfig['file_extensions']); $this->virtualhosts_data[$vhosts_filename] .= ' ' . "\n"; - $this->virtualhosts_data[$vhosts_filename] .= ' SetHandler php5-fastcgi .php'. "\n"; + $this->virtualhosts_data[$vhosts_filename] .= ' AddHandler php5-fastcgi .php'. "\n"; $this->virtualhosts_data[$vhosts_filename] .= ' Action php5-fastcgi /fastcgiphp' . "\n"; $this->virtualhosts_data[$vhosts_filename].= ' Options +ExecCGI' . "\n"; $this->virtualhosts_data[$vhosts_filename].= ' ' . "\n";