Thanks. That did the trick. According to a post from Mike Ford, it was
ini_set( 'display_errors', 1 ); that was messing me up. I have
display_error turrned off in php.ini too, so even though my reporting was
on, nothing was sent to the browser. Thanks for the help guys :)
- Anthony
"Robert C
> -Original Message-
> From: Anthony [mailto:[EMAIL PROTECTED]
> Sent: 25 June 2003 12:36
>
> I have error reporting turned off in my php.ini file on my production
> server. I have an app I'm writing that I need to run on the
> same server (no
> one can see it though). Anyway. I want t
This is hardly perfect since it shows all errors, but it works for me:
ini_set( 'display_errors', 1 );
ini_set( 'log_errors', 1 );
ini_set( 'error_reporting', -1 );
Anthony wrote:
>
> I have error reporting turned off in my php.ini file on my production
> server. I have an
I have error reporting turned off in my php.ini file on my production
server. I have an app I'm writing that I need to run on the same server (no
one can see it though). Anyway. I want to turn on error reporting during
runtime for this particular app while I'm debugging it. so I put
error_repor
4 matches
Mail list logo