Magento 后端错误:编辑用户

发布于 2024-12-17 00:22:50 字数 441 浏览 2 评论 0原文

我在 Magento 1.6.1.0 后端收到错误: 系统->权限->用户->编辑用户

当我尝试访问此页面时,没有任何内容加载到内容区域中。显示页面布局和菜单,但不显示供用户编辑的表单。

在 Firbug 中,它会抛出以下错误:

$("user_user_roles") is null

此行来自

app/design/adminhtml/default/default/template/permissions/user_roles_grid_js.phtml

尚未被触及的行。

我从 1.6.0.0 更新到 1.6.1.0 ...可以在旧版本中创建和编辑用户,但我现在无法执行此操作。在网上找不到任何有关此错误的信息。

如果有解决办法,请告诉我。

I get an error in Magento 1.6.1.0 backend:
System -> Permissions -> Users -> Edit user

When I try to access this page nothing gets loaded into content area. Page layout and menus are displayed but the form for user editing is not.

In Firbug it throws the following error:

$("user_user_roles") is null

This line comes from

app/design/adminhtml/default/default/template/permissions/user_roles_grid_js.phtml

which has not been touched.

I did an update from 1.6.0.0 to 1.6.1.0 ... could create and edit users in the old version but I am not able to do it now. Could not find anything on the web for this error.

Please let me know if there is a fix to this.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

听闻余生 2024-12-24 00:22:50

我也遇到这个错误。这是我所做的修复。
在 app/code/core/Mage/Adminhtml/Block/Permissions/User/Edit/Tab/Roles.php 中打开文件 Roles.php 并添加 getRowUrl() 函数:

public function getRowUrl($row) {
  return $this->getUrl('*/*/edit');
}

希望这有帮助,
尼奥.

I also got this error. Here is what I did to fix.
Open file Roles.php in app/code/core/Mage/Adminhtml/Block/Permissions/User/Edit/Tab/Roles.php and add getRowUrl() function:

public function getRowUrl($row) {
  return $this->getUrl('*/*/edit');
}

Hope this helps,
Neo.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文