Answers for "magento 2 page empty"

PHP
0

magento 1.9 print blank page error

you have no any error find then try below code add top in index.php file

ini_set('error_reporting', E_ERROR);
register_shutdown_function("fatal_handler");
function fatal_handler() {
    $error = error_get_last();
    echo("<pre>");
    print_r($error);
}
after check it which line error showing it
Posted by: Guest on June-29-2020
0

magento 2 ui component blank page

If you've copy-pasted code from the frontend layout
the problem might be with the layout="1column".
You should remove it.

Otherwise, check that the config names match your routes.
Posted by: Guest on August-25-2020

Browse Popular Code Answers by Language