config.php"); $continue = false; } else { $cwd = getcwd(); $config = str_replace("%privatePhpDirectory%", addslashes($PRIVATE_PHP_PATH), $config); $config = str_replace("%publicPhpDirectory%", addslashes($PUBLIC_PHP_PATH), $config); $config = str_replace("%nelSqlHostname%", addslashes($cfg['db']['shard']['host']), $config); $config = str_replace("%nelSqlUsername%", addslashes($cfg['db']['shard']['user']), $config); $config = str_replace("%nelSqlPassword%", addslashes($cfg['db']['shard']['pass']), $config); $config = str_replace("%nelDatabase%", addslashes($cfg['db']['shard']['name']), $config); $config = str_replace("%toolDatabase%", addslashes($cfg['db']['tool']['name']), $config); $config = str_replace("%amsSqlHostname%", addslashes($cfg['db']['lib']['host']), $config); $config = str_replace("%amsSqlUsername%", addslashes($cfg['db']['lib']['user']), $config); $config = str_replace("%amsSqlPassword%", addslashes($cfg['db']['lib']['pass']), $config); $config = str_replace("%amsDatabase%", addslashes($cfg['db']['web']['name']), $config); $config = str_replace("%amsLibDatabase%", addslashes($cfg['db']['lib']['name']), $config); $config = str_replace("%nelSetupPassword%", addslashes($NEL_SETUP_PASSWORD), $config); // $config = str_replace("%domainDatabase%", addslashes($_POST["domainDatabase"]), $config); // TODO $config = str_replace("%nelDomainName%", addslashes($NEL_DOMAIN_NAME), $config); if (file_put_contents("config.php", $config)) { printalert("success", "Generated config.php"); } else { printalert("danger", "Cannot write to config.php"); $continue = false; } } } require_once('database.php'); if (file_exists("role_support")) { $continue = upgrade_support_databases($continue); } if (file_exists("role_service")) { $continue = upgrade_service_databases($continue); } if (file_exists("role_domain")) { $continue = upgrade_domain_databases($continue); } ?>

Continue

Backup
It is strongly recommended to create a backup of your installation before proceeding with an upgrade!