abazoskib Posted September 29, 2009 Share Posted September 29, 2009 i have error_reporting(E_ALL) set however when there is an error with the php portion o fmy pages, the page ceases to load and a blank white screen is shown. how can i fix this? Quote Link to comment https://forums.phpfreaks.com/topic/175949-php-shows-no-errors-in-browser/ Share on other sites More sharing options...
PFMaBiSmAd Posted September 29, 2009 Share Posted September 29, 2009 For debugging, you need both of the following lines - ini_set("display_errors", "1"); error_reporting(E_ALL); However, to help show a fatal parse error, those two settings need to be made in the master php.ini. Quote Link to comment https://forums.phpfreaks.com/topic/175949-php-shows-no-errors-in-browser/#findComment-927128 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.