PHP Error reporting
Posted: Mon Apr 12, 2010 9:43 am
For some reason my error reporting doesn't display on the screen any more it just stores them in my error logs...It used to always display an error for any type of mistake now i just get white screens....
I put :
In my global header so all pages have the error reporter yet it doesn't work! This is what is in my error reporter script:
any idea what i got wrong ? :S
I put :
Code: Select all
<?php
session_start();
require_once($_SERVER['DOCUMENT_ROOT']."/../css/includes/bconnect45/errorreporter.php");
Code: Select all
<?php
ini_set('display_errors',1);
error_reporting(E_ALL | E_STRICT | E_RECOVERABLE_ERROR | E_DEPRECATED | E_USER_DEPRECATED);
?>