magento debug white page

Solutions on MaxInterview for magento debug white page by the best coders in the world

showing results for - "magento debug white page"
Kyara
25 Jun 2020
1ini_set('error_reporting', E_ERROR);
2register_shutdown_function("fatal_handler");
3function fatal_handler() {
4    $error = error_get_last();
5    if ($error) {
6    	echo("<pre>");
7    	print_r($error);
8    }
9}
10