From ed666d97eea5af6249a175e5ac02a32ff1d21d91 Mon Sep 17 00:00:00 2001 From: tbrehm <t.brehm@ispconfig.org> Date: Thu, 17 Sep 2009 15:15:26 +0000 Subject: [PATCH] Fixed: FS#883 - Webtraffic bug with 2 server in SVN Version --- install/update.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/install/update.php b/install/update.php index 47be7d6b33..dbb45611cb 100644 --- a/install/update.php +++ b/install/update.php @@ -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_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. if(!$conf['mysql']['ip'] = gethostbyname($conf['mysql']['host'])) die('Unable to resolve hostname'.$conf['mysql']['host']); -- GitLab