Skip to content

Instantly share code, notes, and snippets.

@matthewpennell
Created July 12, 2012 14:30
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save matthewpennell/3098465 to your computer and use it in GitHub Desktop.
Quick and dirty ExpressionEngine blank page debugging
// Switch on all error displays, both by trying to override php.ini, and using the reporting function.
ini_set('display_errors', 1);
error_reporting(E_ALL);
// Also try upping the memory limit for the PHP script, in case we're hitting that limit.
ini_set('memory_limit', '256M');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment