Arun
Arun

Reputation: 364

Front end is blank in Magento

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

Answers (1)

Mubashir
Mubashir

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

Related Questions