From ed666d97eea5af6249a175e5ac02a32ff1d21d91 Mon Sep 17 00:00:00 2001
From: tbrehm <t.brehm@ispconfig.org>
Date: Thu, 17 Sep 2009 11:15:26 -0400
Subject: [PATCH] Fixed: FS#883 - Webtraffic bug with 2 server in SVN Version
---
install/update.php | 5 +++++
1 files changed, 5 insertions(+), 0 deletions(-)
diff --git a/install/update.php b/install/update.php
index 47be7d6..dbb4561 100644
--- a/install/update.php
+++ b/install/update.php
@@ -100,6 +100,11 @@
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']);
--
Gitblit v1.9.1