diff --git a/actions/admin/settings/135.fcgid.php b/actions/admin/settings/135.fcgid.php index 97a62d76..6f10a217 100644 --- a/actions/admin/settings/135.fcgid.php +++ b/actions/admin/settings/135.fcgid.php @@ -30,7 +30,7 @@ return array( 'save_method' => 'storeSettingField', 'plausibility_check_method' => 'checkFcgidPhpFpm', 'overview_option' => true - ), + ), 'system_mod_fcgid_configdir' => array( 'label' => $lng['serversettings']['mod_fcgid']['configdir'], 'settinggroup' => 'system', @@ -66,7 +66,7 @@ return array( 'settinggroup' => 'system', 'varname' => 'mod_fcgid_wrapper', 'type' => 'option', - 'option_options' => array(0 => 'ScriptAlias', 1=> 'FCGIWrapper'), + 'option_options' => array(0 => 'ScriptAlias', 1=> 'FcgidWrapper'), 'default' => 1, 'save_method' => 'storeSettingField', 'websrv_avail' => array('apache2') diff --git a/scripts/jobs/cron_tasks.inc.http.10.apache.php b/scripts/jobs/cron_tasks.inc.http.10.apache.php index ed1a1704..2411c459 100644 --- a/scripts/jobs/cron_tasks.inc.http.10.apache.php +++ b/scripts/jobs/cron_tasks.inc.http.10.apache.php @@ -260,7 +260,7 @@ class apache $this->virtualhosts_data[$vhosts_filename].= ' SuexecUserGroup "' . $this->settings['system']['mod_fcgid_httpuser'] . '" "' . $this->settings['system']['mod_fcgid_httpgroup'] . '"' . "\n"; $this->virtualhosts_data[$vhosts_filename].= ' ' . "\n"; $this->virtualhosts_data[$vhosts_filename].= ' AddHandler fcgid-script .php' . "\n"; - $this->virtualhosts_data[$vhosts_filename].= ' FCGIWrapper ' . $starter_filename . ' .php' . "\n"; + $this->virtualhosts_data[$vhosts_filename].= ' FcgidWrapper ' . $starter_filename . ' .php' . "\n"; $this->virtualhosts_data[$vhosts_filename].= ' Options +ExecCGI' . "\n"; // >=apache-2.4 enabled? if ($this->settings['system']['apache24'] == '1') { 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 b277ae40..070d5eea 100644 --- a/scripts/jobs/cron_tasks.inc.http.15.apache_fcgid.php +++ b/scripts/jobs/cron_tasks.inc.http.15.apache_fcgid.php @@ -80,7 +80,7 @@ class apache_fcgid extends apache $php_options_text.= ' SetHandler fcgid-script' . "\n"; foreach($file_extensions as $file_extension) { - $php_options_text.= ' FCGIWrapper ' . $php->getInterface()->getStarterFile() . ' .' . $file_extension . "\n"; + $php_options_text.= ' FcgidWrapper ' . $php->getInterface()->getStarterFile() . ' .' . $file_extension . "\n"; } $php_options_text.= ' Options +ExecCGI' . "\n"; $php_options_text.= ' ' . "\n";