Created
July 12, 2012 14:30
-
-
Save matthewpennell/3098465 to your computer and use it in GitHub Desktop.
Quick and dirty ExpressionEngine blank page debugging
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
// 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