使用自定义 MS-SQL 数据库验证 phpBB

发布于 2025-01-07 08:57:45 字数 59 浏览 1 评论 0原文

如何让我的用户通过输入用户凭据来登录 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 技术交流群。

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

发布评论

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

评论(1

不醒的梦 2025-01-14 08:57:45

您需要为 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

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