Mostrar errores durante el desarrollo
23/02/2016
En Drupal 7, modificamos la configuración de PHP para aumentar al máximo el nivel de notificación de errores. Para ello, hay que editar el archivo settings.php de Drupal y añadir al final del mismo las líneas de código que hay a continuación. Adicionalmente, navegar a Administration→ Configuration→ Development → logging and errors and seleccionar "All messages". (This sets $conf['error_level'] = 2; .)
<?php
error_reporting(E_ALL);
ini_set('display_errors', TRUE);
ini_set('display_startup_errors', TRUE);
//Note: Do not include the opening and closing PHP tags when you copy this code
?>