Hallo zusammen
Ich möchte gerne in meiner config.php den Debug Modus deaktivieren.
Nun ist in einer Originalen config Datei bloss dieses? Oder was muss bleiben und was weg?
Ich weiss leichte frage aber für mich Hilfsreich
array (
'host' => 'localhost',
'port' => '3306',
'username' => 'xxxx',
'password' => 'xxxx',
'dbname' => 'meinshop.local',
),
'front' => [
'showException' => true,
'throwExceptions' => true,
'noErrorHandler' => false,
],
//Zeige Low-Level PHP-Fehler
'phpsettings' => [
'display_errors' => 1,
],
// Template-Cache
'template' => [
'forceCompile' => true,
],
// Backend-Cache
'cache' => [
'backend' => 'Black-Hole',
'backendOptions' => [],
'frontendOptions' => [
'write_control' => false
],
],
// Http-Cache
'httpCache' => [
'enabled' => true, // true or false
'debug' => true,
],
);