Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have an error in my Magento backend that results in a blank screen (WSOD). I have set errors to on in admin but there is nothing being created in var/logs/. (I have checked permissions for that directory and all is correct).

I have also ini_set('display_errors', 1) in index.php and Magento is set to developer mode. I have also enabled apache and php error logs.

No errors are being logged though?!

Anyone have a clue as to why errors aren't being shown? As I'm confused! Thanks

share|improve this question
Update Well as much as I'd like to accept an answer I don't believe that there is one stand alone answer to this issue. Most seem to agree that the first thing to check is the memory but in my experience this isn't the answer for my issue. I'll leave this open though and hopefully it might act as a resource for others. Thanks. – sulman Aug 13 '12 at 8:26

9 Answers

Whenever this happens the first thing I check is the PHP memory limit.

Magento overrides the normal error handler with it's own, but when the error is "Out of memory" that custom handler cannot run, so nothing is seen.

share|improve this answer
Hmm interesting suggestion. Thanks for this. I'll check my memory settings. – sulman Jan 24 '11 at 19:50

It can also be when you don't have a proper php extension loaded. I would double check that you have all of the required php extensions loaded on your system if it isn't the memory limit issue.

share|improve this answer
I'll run the Magento checking scripts to make sure I have all required extensions. Thanks. – sulman Jan 24 '11 at 19:51

I was also facing this error. The error has been fixed by changing content of core function getRowUrl in app\code\core\Mage\Adminhtml\Block\Widget\Grid.php The core function is :

public function getRowUrl($item) 
{ 
$res = parent::getRowUrl($item); 
return ($res ? $res : ‘#’); 
}

Replaced with :

public function getRowUrl($item) 
{ 
return $this->getUrl(’*/*/edit’, array(’id’ => $item->getId())); 
}

For more detail : http://bit.ly/iTKcer

Enjoy!!!!!!!!!!!!!

share|improve this answer

This could be as simple as a template conflict. Revert to default template in System/Configuration/Design/Themes.

share|improve this answer

I have also experienced the same problem when uploading the magento project to my webserver, In my case the zip file is corrupted during the upload process and many of my php files are also damaged. I have uploaded via ftp. I have found the solution for this. If you are making the zip file from linux machine, try to use command line tool (For example: ie;

zip -r my_archive.zip /path/of/files/to/compress/ )

and do upload to your web server from windows filezilla client.

share|improve this answer
1  
Personally (if I'm not tar balling) then this is the exact method I use. Interesting info though. – sulman Aug 13 '12 at 7:58

Just ran into this issue and lost the whole day solving it. Try to increase memory_limit, that worked for me!

share|improve this answer

I had the same problem, it was solved after re-installing my Theme

share|improve this answer

Same problem, I have just purged cache

rm -rf var/cache/* 

Et voila ! I don't understand what it was...

share|improve this answer

This may also be caused by using the xDebug bookmarks when debugging the page. Just stop debugger (remove cookie) and it will go back to normal.

share|improve this answer

protected by Community Mar 13 at 12:31

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.