Prestashop – habilitar modo debug

Útil para cuando queremos investigar errores en Prestashop. En config/config.inc.php modificar estas lineas

[cc] @ini_set(‘display_errors’, ‘off’);
define(‘_PS_DEBUG_SQL_’, false);
[/cc]

por estas otras

[cc] @ini_set(‘display_errors’, ‘on’);
define(‘_PS_DEBUG_SQL_’, true);
[/cc]

Leave a Reply

Your email address will not be published. Required fields are marked *