使用自定义 MS-SQL 数据库验证 phpBB
如何让我的用户通过输入用户凭据来登录 phpBB 论坛,而这些凭据存储在单独的 MS SQL 数据库中?
How can I let my users to log into a phpBB forum by entering their user credentials while these credentials are stored in a separate MS SQL database?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要为 phpbb 创建一个自定义身份验证插件。由于您的要求是针对数据库进行身份验证,因此重新使用 phpbb 用于针对其自己的内部数据库进行身份验证的现有插件应该非常简单。
身份验证插件位于/includes/auth
身份验证插件必须命名为
auth_.php
因此,根据您的情况,创建以下副本
auth_db.php
并调用它,例如auth_mssql.php
身份验证插件记录在此处:http://wiki.phpbb.com/Authentication_plugins
You need to create a custom authentication plugin for phpbb. Since your requirement is authentication against a database, it should be pretty straight forward to re-use the existing plugin phpbb uses for authentication against it's own internal database.
Authentication plugins are located in
<install_dir>/includes/auth
An authentication plugin must be named
auth_<your custom name>.php
So in your case, create a copy of
auth_db.php
and call it e.g.auth_mssql.php
Authentication plugins are documented here: http://wiki.phpbb.com/Authentication_plugins