benjaminbeazy Posted April 25, 2007 Share Posted April 25, 2007 I'm not sure if this should go under help or installation, forgive me. I've just switched to a dedicated server where php.ini has error_reporting all and display_errors off I need to see errors for debugging and when I try to set the local display_errors value to "1" or "ON" for a 1 page script that I know has errors, I still get no output I know its being set, because i run phpinfo() right after setting it and the display_errors value changes to ON NOTE: When I change display_errors in php.ini, they show up on the page i've tried every combo i can think of.... error_reporting(E_ALL); display_errors(1); error_reporting(8191); display_errors(1); error_reporting(E_ALL); display_errors(ON); error_reporting(8191); display_errors(ON); ini_set(error_reporting, 8191); ini_set(display_errors,1); any ideas? muchos gracias Quote Link to comment https://forums.phpfreaks.com/topic/48561-solved-error-reporting-and-displaying-errors/ Share on other sites More sharing options...
benjaminbeazy Posted April 25, 2007 Author Share Posted April 25, 2007 damn it, nevermind figured it out.... Quote Link to comment https://forums.phpfreaks.com/topic/48561-solved-error-reporting-and-displaying-errors/#findComment-237784 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.