我在WAMPSERVER 2.0上使用本地系统,我正在安装magento 1.6.2.0,当我进入系统时 - >权限 - >角色并单击管理员我打破了页面屏幕。我试图改变php.ini等的最大执行时间,内存限制,但没有任何作用。
请帮帮我。
由于
答案 0 :(得分:0)
我在文件app / code / core / Mage / Adminhtml / Block / Widget / Grid.php中进行了更改 在文件中搜索函数getRowUrl。
public function getRowUrl($item)
{
$res = parent::getRowUrl($item);
return ($res ? $res : '#');
}
用以下功能替换此功能:
public function getRowUrl($item)
{
$res = parent::getUrl($item);
return ($res ? $res : '#');
}
它对我有用并解决了我的问题。我知道对核心文件进行更改并不好,但我正在使用本地系统并且因此而陷入困境。
此致 哈南阿里