Skip to content
Snippets Groups Projects
Commit 99ca0f7a authored by Till Brehm's avatar Till Brehm
Browse files

Fixed: FS#3261 - APS Deletes error folder

parent 5fbd5747
No related branches found
No related tags found
No related merge requests found
......@@ -373,14 +373,16 @@ class ApsInstaller extends ApsBase
/* Test if the new mysql connection is laready working to ensure that db servers in multiserver
setups get enough time to create the database */
for($n = 1; $n < 15; $n++) {
$mysqli = new mysqli($newdb_host, $newdb_login, $newdb_pw, $newdb_name);
if ($mysqli->connect_error) {
unset($mysqli);
sleep(5);
} else {
unset($mysqli);
break;
if($this->handle_type == 'install') {
for($n = 1; $n < 15; $n++) {
$link = mysql_connect($newdb_host, $newdb_login, $newdb_pw);
if (!$link) {
unset($link);
sleep(5);
} else {
unset($link);
break;
}
}
}
......
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