Skip to content

Instantly share code, notes, and snippets.

@colorfield
Created February 26, 2016 16:12
Show Gist options
  • Save colorfield/dee123531135f4ca807a to your computer and use it in GitHub Desktop.
Save colorfield/dee123531135f4ca807a to your computer and use it in GitHub Desktop.
Override php.ini for debug on dev environment
<?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