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? 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. 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
Archived
This topic is now archived and is closed to further replies.