ganjan
ganjan

Reputation: 7596

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

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

Upvotes: 1

Views: 1333

Answers (1)

azram19
azram19

Reputation: 1885

You can use phpBB for authorization.

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

Upvotes: 2

Related Questions