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

Fixed some php warnings in update script that appear when a version without...

Fixed some php warnings in update script that appear when a version without multiserver replication is updated.
parent ec43cefc
No related branches found
No related tags found
No related merge requests found
......@@ -89,10 +89,10 @@ $conf['mysql']['charset'] = 'utf8';
$conf["mysql"]["ispconfig_user"] = $conf_old["db_user"];
$conf["mysql"]["ispconfig_password"] = $conf_old["db_password"];
$conf["mysql"]["master_host"] = $conf_old["dbmaster_host"];
$conf["mysql"]["master_database"] = $conf_old["dbmaster_database"];
$conf["mysql"]["master_ispconfig_user"] = $conf_old["dbmaster_user"];
$conf["mysql"]["master_ispconfig_password"] = $conf_old["dbmaster_password"];
if(isset($conf_old["dbmaster_host"])) $conf["mysql"]["master_host"] = $conf_old["dbmaster_host"];
if(isset($conf_old["dbmaster_database"])) $conf["mysql"]["master_database"] = $conf_old["dbmaster_database"];
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"];
// Resolve the IP address of the mysql hostname.
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