How to code an external login for Woltlab Burning Board 3?
I am looking for a way to make my own login formular in PHP to log in with my extisting Wbb3 account. The login will be on the same server, so i've got access to the database and the salts, but I'm missing the w开发者_开发技巧ay how to encrypt the password.
Any tutorials?
Salting in WBB3 is like
$pw = sha1 (salt . sha1 (salt. sha1(password_from_field)));
Look in /lib/util/StringUtil.class.php
精彩评论