在magento 1.5.0.1中添加新的用户错误 [英] Add new user error in magento 1.5.0.1

查看:52
本文介绍了在magento 1.5.0.1中添加新的用户错误的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我得到一个空白页,单击添加新用户->系统->权限->用户->添加新用户后,我也重定向到分配的角色页面.我检查了日志,报告,异常错误文件,即使已启用也未发现任何错误.我无法添加新用户.有人可以指出正确的方向吗?

Hi Guys I am getting a blank page and also redirect to assigned role page after clicking Add New User --> System --> Permissions --> User --> Add New User.I checked log, report,exception error file, didn't find any error even it enabled. I cannot add new user.Can someone please point me in the right direction, that would be great.

提前谢谢.

推荐答案

已通过更改app \ code \ core \ Mage \ Adminhtml \ Block \ Widget \ Grid.php

The error has been fixed by changing content of core function getRowUrl in app\code\core\Mage\Adminhtml\Block\Widget\Grid.php

核心功能:

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()));
    }

效果很好.

这篇关于在magento 1.5.0.1中添加新的用户错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆