fixing syscp-fixed syscp-bug #1033 (also lighty -> php.ini per customer/domain);

This commit is contained in:
Michael Kaufmann (d00p)
2010-01-20 12:19:49 +00:00
parent c887699a2c
commit 98e9a78b7c
2 changed files with 9 additions and 2 deletions

2
TODO
View File

@@ -118,6 +118,6 @@ WONTFIX 0001098 Possibillity to dissable "Catchall" for mails
0001058 Add id/class attributs in <img> tag (left navigation)
0001043 When creating customer it should also be possible to add domains (merge customer & domain menu)
0001035 PHP-Error-Log | Adminpanel & CronTask
0001033 Cron-Tasks: creating of php.ini
WONTFIX 0001033 Cron-Tasks: creating of php.ini
0001010 Send info mail to customer if webspace is exceeded
0001004 Ressources / Domains - Standard subdomains should be separrated from normal Domains

View File

@@ -67,10 +67,17 @@ while($row = $db->fetch_array($result_tasks))
}
}
elseif($settings['system']['webserver'] == "lighttpd")
{
if($settings['system']['mod_fcgid'] == 1)
{
$webserver = new lighttpd_fcgid($db, $cronlog, $debugHandler, $settings);
}
else
{
$webserver = new lighttpd($db, $cronlog, $debugHandler, $settings);
}
}
}
if(isset($webserver))
{