Created
February 26, 2016 16:12
-
-
Save colorfield/dee123531135f4ca807a to your computer and use it in GitHub Desktop.
Override php.ini for debug on dev environment
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// place this in a global script like settings.php in Drupal | |
ini_set("display_errors", 1); | |
ini_set("track_errors", 1); | |
ini_set("html_errors", 1); | |
error_reporting(E_ALL); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment