views:

96

answers:

1

Hi. 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

+1  A: 

You can use phpBB for authorization.

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

azram19