| | |
| | | ISPConfig 3 updater. |
| | | */ |
| | | |
| | | die("Autoupdate has been removed.\nPlease start the update on the shell with the command ispconfig_update.sh as root user.\n"); |
| | | |
| | | error_reporting(E_ALL|E_STRICT); |
| | | |
| | | /* |
| | |
| | | die("internal error - MYSQL-Root passord not known"); |
| | | } |
| | | |
| | | //** Test mysql root connection |
| | | if(!@mysql_connect($conf["mysql"]["host"],$conf["mysql"]["admin_user"],$conf["mysql"]["admin_password"])) { |
| | | die("internal error - MYSQL-Root passord wrong"); |
| | | } |
| | | |
| | | /* |
| | | * Check all tables |
| | | */ |
| | |
| | | |
| | | //* initialize the database |
| | | $inst->db = new db(); |
| | | $inst->db->dbName = $conf["mysql"]["database"]; |
| | | |
| | | /* |
| | | * The next line is a bit tricky! |