On my development server (not the live server) I want to see mySQL errors on the page and this is what I had before I upgraded to ZEND server 6.1.0. (which also upgraded MySQL to 5.5) But now they are not showing.
My DB connection script includes the following:
$dbh->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
I don't want to go to the log to see the errors. I want to see them on the page as I used to. Suggestions?
Lost error reporting after server upgrade
Moderator: General Moderators
Re: Lost error reporting after server upgrade
Check the display_errors setting in your php.ini.
Re: Lost error reporting after server upgrade
Good now. Thanks.