3

I am just wondering how to go about implementing a forms Membership provider based off of a PhPbb forum database. I have looked at simply hashing the password using a function port of 'phpbb_hash' and comparing it to the database values, however I can't seem to grasp the login system as the hashes I was getting were not the same as those in the database.

Can someone tell me how to authenticate a users credentials against a PhPbb database?

H.B.
  • 166,899
  • 29
  • 327
  • 400
Alex Hope O'Connor
  • 9,354
  • 22
  • 69
  • 112

2 Answers2

2

Have you seen this thread with an authentication provider? It looks like a good start to at least fix your authentication problem, as it seems to have the hashing problem down.

Chad Ruppert
  • 3,650
  • 1
  • 19
  • 19
  • Yeah I have, but may I ask what is the remote hash? is it a field in the phpbb users table? if so, which? thanks for pointing out this solution to me =) – Alex Hope O'Connor Feb 20 '11 at 06:42
1

There is a project here on CodePlex, but it seems abandoned: http://phpbbproviders.codeplex.com/

Derrick
  • 2,502
  • 2
  • 24
  • 34