Skip to content
Snippets Groups Projects
Commit ed666d97 authored by tbrehm's avatar tbrehm
Browse files

Fixed: FS#883 - Webtraffic bug with 2 server in SVN Version

parent 434907e5
No related branches found
No related tags found
No related merge requests found
...@@ -100,6 +100,11 @@ if(isset($conf_old["dbmaster_database"])) $conf["mysql"]["master_database"] = $c ...@@ -100,6 +100,11 @@ if(isset($conf_old["dbmaster_database"])) $conf["mysql"]["master_database"] = $c
if(isset($conf_old["dbmaster_user"])) $conf["mysql"]["master_ispconfig_user"] = $conf_old["dbmaster_user"]; if(isset($conf_old["dbmaster_user"])) $conf["mysql"]["master_ispconfig_user"] = $conf_old["dbmaster_user"];
if(isset($conf_old["dbmaster_password"])) $conf["mysql"]["master_ispconfig_password"] = $conf_old["dbmaster_password"]; if(isset($conf_old["dbmaster_password"])) $conf["mysql"]["master_ispconfig_password"] = $conf_old["dbmaster_password"];
//* Check if this is a master / slave setup
if($conf["mysql"]["master_host"] != '' && $conf["mysql"]["host"] != $conf["mysql"]["master_host"]) {
$conf['mysql']['master_slave_setup'] = 'y';
}
// Resolve the IP address of the mysql hostname. // Resolve the IP address of the mysql hostname.
if(!$conf['mysql']['ip'] = gethostbyname($conf['mysql']['host'])) die('Unable to resolve hostname'.$conf['mysql']['host']); if(!$conf['mysql']['ip'] = gethostbyname($conf['mysql']['host'])) die('Unable to resolve hostname'.$conf['mysql']['host']);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment