Dann müsste doch etwas in den Log-Dateien (data/logs/errorlog.txt oder data/logs/setuplog.txt) stehen....Wenn ich die anderen Einstellungen mache und dann den Setup bekomme ich ab der zweiten Seite eine weiße Seite...
Vermutlich ist irgendwo ein Syntaxfehler, z. B. der Datei "data/config/{ENVIRONMENT}/config.php"?
Wie sieht denn deine DB-Konfiguration in der config.php aus, meine ist wie folgt, und die funktioniert auch im setup:
Code: Alles auswählen
$cfg['db'] = array(
'connection' => array(
'host' => '**********', // (string) The host where your database runs on
'database' => ''*********', // (string) The database name which you use
'user' => ''*********', // (string) The username to access the database
'password' => ''*********', // (string) The password to access the database
'charset' => 'utf8', // (string) The charset of connection to database
'options' => array(
MYSQLI_INIT_COMMAND => "SET SESSION sql_mode='';"
),
),
'haltBehavior' => 'report', // (string) Feasible values are 'yes', 'no' or 'report'
'haltMsgPrefix' => (isset($_SERVER['REQUEST_URI'])) ? $_SERVER['REQUEST_URI'] . ' ' : '',
'enableProfiling' => false, // (bool) Flag to enable profiling
);