- add possibility to use FCGID also for Froxlor itself, fixes #305
- make extra settings menu for FCGID - replace deprecated function 'ereg_replace' in lighttpd-cronjob
This commit is contained in:
@@ -244,6 +244,10 @@ class lighttpd
|
||||
{
|
||||
}
|
||||
|
||||
public function createOwnVhostStarter()
|
||||
{
|
||||
}
|
||||
|
||||
protected function createLighttpdHosts($ip, $port, $ssl, $vhost_filename)
|
||||
{
|
||||
$query = "SELECT * FROM " . TABLE_PANEL_IPSANDPORTS . " WHERE `ip`='" . $ip . "' AND `port`='" . $port . "'";
|
||||
@@ -612,7 +616,7 @@ class lighttpd
|
||||
protected function getServerNames($domain)
|
||||
{
|
||||
$server_string = array();
|
||||
$domain_name = ereg_replace('\.', '\.', $domain['domain']);
|
||||
$domain_name = str_replace('.', '\.', $domain['domain']);
|
||||
|
||||
if($domain['iswildcarddomain'] == '1')
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user