PHP-Code:
WARNING(2): "mysqli_connect(): Unknown MySQL server host 'localhost:3306' (2)" 
Wer ähnliche oder gleichlautende Warnungen bekommt, muss die beiden configure.php anpassen.
Zumindest ich hatte immer den Port zum Server angegeben "localhost:3306"
PHP-Code:
// define our database connection
define('DB_SERVER''localhost:3306'); // eg, localhost - should not be empty for productive servers 
Nach dem Update auf GX 3.1.1.0 geht das nicht mehr. Es darf nur noch "localhost" eingetragen sein:
PHP-Code:
// define our database connection
define('DB_SERVER''localhost'); // eg, localhost - should not be empty for productive servers