Skip to content

Instantly share code, notes, and snippets.

@shawn-crigger
Created September 27, 2016 22:30
Show Gist options
  • Save shawn-crigger/bd28692da0e5009ae1ff9fc7cc8643bc to your computer and use it in GitHub Desktop.
Save shawn-crigger/bd28692da0e5009ae1ff9fc7cc8643bc to your computer and use it in GitHub Desktop.
Better Error PHP file for ExpressionEngine ./system/expressionengine/errors/error_php.php
<div style="border:1px solid #990000;padding:20px;margin:10px;">
<h4>A PHP Error was encountered</h4>
<p>Severity: <?php echo $severity; ?></p>
<p>Message: <?php echo $message; ?></p>
<p>Filename: <?php echo $filepath; ?></p>
<p>Line Number: <?php echo $line; ?></p>
<p><hr/><?php
$e = new Exception();
echo $e->getTraceAsString();
?></p>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment