Re: [PHP] RE: Error Reporting for file commands

2006-09-26 Thread Richard Lynch
Try using http://php.net/set_error_handler and see if you can trap the errors. You'll want to test it with a test script that intentionally causes the errors. On Mon, September 25, 2006 5:53 am, James Nunnerley wrote: > Sometime ago, I posted the email below, regarding some problems with a > file

Re: [PHP] RE: Error Reporting for file commands

2006-09-25 Thread Robert Cummings
On Mon, 2006-09-25 at 11:53 +0100, James Nunnerley wrote: > Sometime ago, I posted the email below, regarding some problems with a file > manager we have developed for our users. > > The problem still exists, and is now starting to cause "complaints". Mainly > from my manager, who's fed-up with r

[PHP] RE: Error Reporting for file commands

2006-09-25 Thread James Nunnerley
Sometime ago, I posted the email below, regarding some problems with a file manager we have developed for our users. The problem still exists, and is now starting to cause "complaints". Mainly from my manager, who's fed-up with receiving the error emails from the system, but it must be annoying u

Re: [PHP] Re: Error Reporting

2004-06-28 Thread Philip Olson
On Mon, 28 Jun 2004, Daniel Kullik wrote: > Tom Chubb wrote: > > I ave a strange problem with my error reporting! > > I have set php.ini to: error_reporting = E_ALL but I don't see any errors. > > (After I was happy things were working on my Apache Test Server, I uploaded > > to my web host and

[PHP] Re: Error Reporting

2004-06-28 Thread Daniel Kullik
Tom Chubb wrote: I ave a strange problem with my error reporting! I have set php.ini to: error_reporting = E_ALL but I don't see any errors. (After I was happy things were working on my Apache Test Server, I uploaded to my web host and discovered errors.) Thanks, Tom Make sure that "display_error

[PHP] Re: Error Reporting

2004-06-28 Thread Aidan Lister
Did you restart your webserver to make sure the changes were loaded? "Tom Chubb" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > I ave a strange problem with my error reporting! > I have set php.ini to: error_reporting = E_ALL but I don't see any errors. > (After I was happy thing

[PHP] Re: Error Reporting help

2004-01-18 Thread Luke
Are you using output buffering? that will stop it from being displayed (it does on mine, if thre is an error and output buffering, nothing at all shows up) So try turning output buffering off, or at the beggining somewhere put while(@ob_end_flush); -- Luke "Chris Edwards" <[EMAIL PROTECTED]> wro