On MyBB?
And yes sessions could be an issue. We could probably get it so the logins work on both.
So: in login.php
PHP Code:
$password = md5($password);
should beocme:
PHP Code:
$password= md5(salt[$password]));
Then the salt and pass need to be extracted form the database and matched to the string. Correct?