|
Posted by Justin Koivisto on 02/02/06 01:03
comp.lang.php wrote:
> I am having problems tracing errors in my code using PHP 4.3.9 on Linux
> RHEL 4 with Apache 2.0.54
>
> On occasions I see no errors, no parse, no fatal, no warnings, no
> notices.. and no code either! No HTML, nothing! I get a completely
> blank page with no content whatsoever.
>
> I have at the very top of my page
> [PHP]
> error_reporting(E_ALL);
> [/PHP]
>
> As a test to see if even notices would pop up, but nothing.
>
> What could cause this to happen?
>
> Thanx
> Phil
>
check to see what the log_errors value is set to in php.ini... if it is
1, then you have to check your error.log file rather than the browser.
--
Justin Koivisto, ZCE - justin@koivi.com
http://koivi.com
[Back to original message]
|