Reputation: 364
I am getting blank page in front end, but the back end works fine. I removed the #
from ini_set('display_errors', 1);
and added error_reporting(E_ALL);
. But still I can't find any errors. I also checked error log, nothing there too. Please help
Upvotes: 0
Views: 3197
Reputation: 567
put the following in index.php
Mage::setIsDeveloperMode(true);
ini_set('display_errors', 1);
and see if you get errors detail on frontend and in logs.
Upvotes: 2