Till Brehm
2014-02-22 99ca0f7a2374237ac20e205619da9fe8d49468d6
Fixed: FS#3261 - APS Deletes error folder
1 files modified
18 ■■■■■ changed files
server/lib/classes/aps_installer.inc.php 18 ●●●●● patch | view | raw | blame | history
server/lib/classes/aps_installer.inc.php
@@ -373,14 +373,16 @@
        
        /* 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;
                }
            }
        }