开发者

How do I create same username and password at phpBB forum as the username and password already saved

开发者 https://www.devze.com 2023-01-09 06:18 出处:网络
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 t开发者_JS百科hat users need to sign up for my site and the phpBB for

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 t开发者_JS百科hat 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


You can use phpBB for authorization.

  • How to log in to phpBB from your website (html code for login form): http://wiki.phpbb.com/display/MODDOCS/Practical.External+login
  • How to check if user is logged in to phpBB: http://wiki.phpbb.com/display/MODDOCS/Practical.Add+custom+page

Hashing functions used in phpBB you can find in includes/functions.php file.

0

精彩评论

暂无评论...
验证码 换一张
取 消