Magento How to debug blank white screen

后端 未结 18 1807

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 checke

18条回答
  •  夕颜
    夕颜 (楼主)
    2020-12-01 05:52

    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!!!!!!!!!!!!!

提交回复
热议问题