Wamp 上的 Magento 不显示管理员权限

发布于 2024-12-27 04:28:44 字数 160 浏览 1 评论 0原文

我正在 WAMPSERVER 2.0 上的本地系统上工作,并且正在安装 magento 1.6.2.0,当我进入系统时 ->权限->角色,然后单击管理员,我的页面已损坏。我尝试更改 php.ini 中的最大执行时间、内存限制等,但没有任何效果。

请帮帮我。

谢谢

i am working on local system on WAMPSERVER 2.0 and I am installing the magento 1.6.2.0 and when i go to the System -> Permissions -> Roles and click on Administrators I got page broken screen. I have tried to change the max execution time, memory limit in php.ini etc but nothing works.

Please help me out.

Thanks

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

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

发布评论

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

评论(1

攒眉千度 2025-01-03 04:28:44

我在文件 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 : '#');
}

它对我有用并解决了我的问题。我知道对核心文件进行更改并不好,但我正在本地系统上工作并且为此陷入困境。

问候,
哈南·阿里

I made changes in the file app/code/core/Mage/Adminhtml/Block/Widget/Grid.php
Search function getRowUrl in the file.

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

Replace this function with below function:

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

It worked for me and resolved my issue. I know its not good to made changes in core files but i was working on local system and was stuck for this.

Regards,
Hanan Ali

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