Prestashop无法访问模块

时间:2017-04-16 16:14:49

标签: prestashop prestashop-1.6

我想访问prestashop中的模块但是它向我显示了这个错误: Don't know the meaning of this error

有人可以告诉我如何修复此错误,以便我可以再次访问模块吗?

1 个答案:

答案 0 :(得分:0)

您的员工帐户不是SuperAdmin的类型,因此我猜测您也无法访问商店的数据库。有人必须从表module_access中删除一行,该行定义了模块ID为186的权限。

但是,如果您有权访问数据库并且知道自己的帐户类型,那么请查看表profile_lang并查看帐户类型的id_profile是什么。

然后运行此查询以插入权限。

INSERT INTO dbprefix_module_access (id_profile, id_module, view, configure, uninstall)
VALUES (youridprofile, 186, 1, 1, 1);

dbprefix替换为您的表格前缀,将youridprofile替换为id_profile表格中的profile_lang