Unknown column 'approved' in 'where clause'
Hi there,
I'm trying to figure out which error_reporting level/setting I should set in my php.ini file. It is currently set to 0, meaning nothing will be shown.
I was reading through this :
http://www.php.net/error_reporting
The reason why I want to change my error_reporting configuration is because right now, when there is a fatal error in a script on my server, the script simply dies out without any type of notice. It makes development extremely difficult and I'm annoyed to the bone.
On the php.net site, I read that the default setting is :
error_reporting(E_ALL ^ E_NOTICE);
What would you recommend?
I want all fatal errors to be shown so that I can troubleshoot them. I don't just want my scripts to die out and not show anything, leaving me to guess.
Yes...I could look at error logs, but the frameworks I work with don't always use the default server error logs and don't always log all errors. I'm not exactly sure why, but I haven't been able to find the errors I was looking for.
Please help me decide which error_reporting level to put in my php.ini file







Bookmarks