Re: [PHP] error_reporting(E_ALL) doesn't show anything

2007-05-18 Thread Jonathan
André Medeiros wrote: Either that, or ini_set('display_errors', '1'); On 5/15/07, Jim Lucas <[EMAIL PROTECTED]> wrote: Afan Pasalic wrote: > hi, > in php.ini is error_reporting turned off. and, to see an error have to > open error_log. > though, for me is much easier to have it on and see the

Re: [PHP] error_reporting(E_ALL) doesn't show anything

2007-05-15 Thread André Medeiros
Either that, or ini_set('display_errors', '1'); On 5/15/07, Jim Lucas <[EMAIL PROTECTED]> wrote: Afan Pasalic wrote: > hi, > in php.ini is error_reporting turned off. and, to see an error have to > open error_log. > though, for me is much easier to have it on and see the errors on the > screen.

Re: [PHP] error_reporting(E_ALL) doesn't show anything

2007-05-15 Thread Jim Lucas
Afan Pasalic wrote: hi, in php.ini is error_reporting turned off. and, to see an error have to open error_log. though, for me is much easier to have it on and see the errors on the screen. while developing, of course. I put on the beginning of the file error_reporting(E_ALL) to "overwrite" ph

Re: [PHP] error_reporting(E_ALL) doesn't show anything

2007-05-15 Thread Afan Pasalic
Stut wrote: Please include the list in replies. I'm sorry. Clicked on wrong Reply button :-) Afan Pasalic wrote: Stut wrote: Afan Pasalic wrote: in php.ini is error_reporting turned off. and, to see an error have to open error_log. though, for me is much easier to have it on and see the e

Re: [PHP] error_reporting(E_ALL) doesn't show anything

2007-05-15 Thread Stut
Please include the list in replies. Afan Pasalic wrote: Stut wrote: Afan Pasalic wrote: in php.ini is error_reporting turned off. and, to see an error have to open error_log. though, for me is much easier to have it on and see the errors on the screen. while developing, of course. I put on t

Re: [PHP] error_reporting(E_ALL) doesn't show anything

2007-05-15 Thread Stut
Afan Pasalic wrote: in php.ini is error_reporting turned off. and, to see an error have to open error_log. though, for me is much easier to have it on and see the errors on the screen. while developing, of course. I put on the beginning of the file error_reporting(E_ALL) to "overwrite" php.ini

[PHP] error_reporting(E_ALL) doesn't show anything

2007-05-15 Thread Afan Pasalic
hi, in php.ini is error_reporting turned off. and, to see an error have to open error_log. though, for me is much easier to have it on and see the errors on the screen. while developing, of course. I put on the beginning of the file error_reporting(E_ALL) to "overwrite" php.ini but it doesn't

Re: [PHP] error_reporting(0)..

2004-01-27 Thread E. Stuart Hicks
estad" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, January 27, 2004 10:03 PM Subject: [PHP] error_reporting(0).. > I am attempting to write my own little error-logging function... > however, for some reason, whatever I do I can not seem to override the > erro

[PHP] error_reporting(0)..

2004-01-27 Thread Robert Restad
I am attempting to write my own little error-logging function... however, for some reason, whatever I do I can not seem to override the error display setting on the server. Starting at the most simple thing, you should think that when you write . . should pretty much stop every error message

[PHP] error_reporting(0)..

2004-01-27 Thread Robert Restad
I am attempting to write my own little error-logging function... however, for some reason, whatever I do I can not seem to override the error display setting on the server. Starting at the most simple thing, you should think that when you write . . should pretty much stop every error message

Re: [PHP] error_reporting()

2002-04-30 Thread Michal Dvoracek
Hi, error_reporting(E_ALL); BTW: RTFM! Regards Michal Dvoracek [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] error_reporting()

2002-04-30 Thread Boaz Yahav
Hi This function keeps amazing me. What is the highest possible value that i can give it to show all possible errors / warnings etc...? Thanks berber

Re: [PHP] error_reporting(E_ALL) and undefined vars

2002-02-07 Thread Julio Nobrega Trabalhando
Thanks Jon. But, that's for security, right? Maybe even other reasons. I know close to zero of programming theory, so, why is it bad to have undefined vars on the code? -- Julio Nobrega. Um dia eu chego lá: http://sourceforge.net/projects/toca -- PHP General Mailing List (http://www.p

RE: [PHP] error_reporting(E_ALL) and undefined vars

2002-02-07 Thread Jon Haworth
> I develop with error_reporting(E_ALL). It's a major pain to type everytime > > if(isset($some_var)) > > To avoid undefined variable errors. Any tips? If you turn E_ALL on > error_reporting, what do you do? Generally I make sure my variables are defined, and if I can't be sure I use... if (is

[PHP] error_reporting(E_ALL) and undefined vars

2002-02-07 Thread Julio Nobrega Trabalhando
Hi All, I develop with error_reporting(E_ALL). It's a major pain to type everytime if(isset($some_var)) To avoid undefined variable errors. Any tips? If you turn E_ALL on error_reporting, what do you do? -- Julio Nobrega. Um dia eu chego lá: http://sourceforge.net/projects/toca Ajudei