Jump to content

working with MyBB


joecooper

Recommended Posts

i have this installed, and i am trying to do a autorization system with php. where you have to use your forum username and password in order to use the script. i assumed the password encryption was md5, but my encrypted password for the forum is diffrent from the md5 i had generated with php...

does anyone know what it is encrypted with and how you will turn $password2 to the encrypted password from $password
Link to comment
https://forums.phpfreaks.com/topic/3903-working-with-mybb/
Share on other sites

Hi [b]joecooper[/b]. I have used the MyBBoard forum before and it is a good forum! MyBB does use md5 to encrypt their passwords, but it uses a method called salt. With salt they encrypt the password with md5 as you do, but then they generate a random salt string which is then added to the encrypted password and then is md5'd again.

I believe the salt string is stored in the mybb_users table for that user.

I would recommend you to hop over to [a href=\"http://community.mybboard.net/\" target=\"_blank\"]MyBB Support Forum[/a]. Ask the guys there for help with what you are trying to do. They should provide you with a straight forward awnser to your problem.
Link to comment
https://forums.phpfreaks.com/topic/3903-working-with-mybb/#findComment-13550
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.