MyBB Community Forums

Full Version: change password from outside mybb
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
what is the password generation algorithm ?
i integrated mybb with my site and i have a change user password on the site but if i change it on the site i need to change it on the forum also.
i can't include any of the forums files
using the same db/tables is not an option.
i used the sdk on the forum MyBB Integrator but it dosen't have a password change procedure
It's a salted md5 hash take a look at inc/functions_user.php at the validate_password_by_uid function.
thanks Dennis i looked at the function
so if i understand correctly the password is
md5(md5($salt).md5($password))
i tried and it seams to work

for what is used the loginkey ?