View Single Post
  #19  
Old 10-24-2009, 12:03 PM
exdiogene exdiogene is offline
Member
 
Join Date: Oct 2009
Posts: 84
Credits: 12,252
exdiogene
Default RE: MyBB intergration

Quote:
(md5(salt[$.password]))
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:
$passwordmd5(salt[$password])); 
Then the salt and pass need to be extracted form the database and matched to the string. Correct?
__________________
Exdiogene have taken over the TommyK CreateBB.com multisites. :cool:
MyBBCodes.com having more than 175 plugins available
Reply With Quote