Hallo zusammen, da nun unser Shop Live ist möchte ich allfällige PHP Shopware Fehlermeldungen (StackTraces) auf der Storefront auschalten und der User auf eine generische HTTP 500 Seite umleiten. Detail des Fehlers sollte aber immer noch in das Log geschrieben werden.
Kann man das so in Shopware 5 so konfigurieren?
Danke schon vorab
Gruss Mark
Hi,
ja, das ist im Standard sogar so, habt ihr vermutlich in der Entwicklung umgestellt. showExceptions, schau mal danach in der config.php oder Configs/Default. php
Daniel
Also die config.php sieht bei uns so aus. Müsste da was bei “front => array( ‘noErrorHandler’ => true, ‘throwExceptions’ => true )” umgestellt werden? Gibt es da eine Beschreibung der Einträge/Werte und ihre Bedeeutung irgendwo?
array (
'host' => 'localhost',
'port' => '3306',
'username' => 'xxxx',
'password' => 'yyyy',
'dbname' => 'zzzzz',
), //'front' => array( 'noErrorHandler' => true, 'throwExceptions' => true ),
'template' => array( 'forceCompile' => false ),
/*'model' => array( 'cacheProvider' => 'Array' ),
'cache' => array(
'backend' => 'Black-Hole',
'backendOptions' => array(),
'frontendOptions' => array(
'write_control' => false
),
)*/
);