如何在 phpBB 论坛创建与已保存的用户名和密码相同的用户名和密码
我有一个网站,所有用户都需要使用用户名和密码注册。今天我在我的网站上添加了 phpBB 论坛。问题是用户需要分别注册我的网站和 phpBB 表单。我可以在他们注册我的网站的同时使用 php 添加到 phpbb_users 数据库吗?
在这种情况下,我需要知道他们在 user_password
中使用哪种密码哈希,这是什么:user_email_hash、user_last_confirm_key、user_form_salt
I have a site where all users need to sign up with username and password. Today I added the phpBB forum to my site. The problem is that users need to sign up for my site and the phpBB form separately. Can I just add to the phpbb_users db with php at the same time as they register for my site?
In that case I need to know what kind of password hash they are using in user_password
, what this is: user_email_hash, user_last_confirm_key, user_form_salt
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用phpBB进行授权。
网站(登录表单的 html 代码): http://wiki.phpbb.com /display/MODDOCS/Practical.External+login
phpBB 中使用的哈希函数可以在includes/functions.php 文件中找到。
You can use phpBB for authorization.
website (html code for login form): http://wiki.phpbb.com/display/MODDOCS/Practical.External+login
Hashing functions used in phpBB you can find in includes/functions.php file.