Ion Auth 用户和管理员问题 - CodeIgniter

发布于 2024-12-14 06:34:43 字数 131 浏览 1 评论 0原文

我使用 Ion Auth 进行网站身份验证,这是一个很棒的工具,但有一个小问题。每当创建用户时,他们都会自动创建为管理员,而不是成员或普通用户,即使这是在我的 ion_auth 配置文件中指定的。有其他人遇到过这个问题,或者知道如何解决这个问题吗?

I'm using Ion Auth for my website authentication, and it's a wonderful tool with one slight issue. Whenever a user is created, they are automatically created as an administrator and not a member or general user even though this is specified within my ion_auth config file. Has anyone else come across this issue, or know how to resolve this?

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

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

发布评论

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

评论(1

清醇 2024-12-21 06:34:43

在 application/config/ion_auth.php 中,

$config['default_group'] = 'members';

“成员”必须插入由以下定义的“组”表中:

$config['tables']['groups'] = 'groups';

如果这不起作用,则问题出在另一部分......

In application/config/ion_auth.php

$config['default_group'] = 'members';

'members' must be inserted in the 'groups' table defined by:

$config['tables']['groups'] = 'groups';

If this not works the problem is in another part...

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