Last Updated: February 25, 2016
·
384
· oostie

Show all errors in Drupal while developing

You can show all errors by adding a few lines to your local testing site's settings.php:

error_reporting(-1);  
$conf['error_level'] = 2;  
ini_set('display_errors ', TRUE);  
ini_set('display_startup_errors', TRUE);