How to display error in Drupal website

Add the following codes in the index.php

error_reporting(E_ALL);
ini_set(‘display_errors’, TRUE);
ini_set(‘display_startup_errors’, TRUE);

Save index.php file.

Leave a comment