Hi,
I want to use the passwords from Vbulletin with Webjeff's filemanager (http://www.webjeff.org/langages/php_scripts.htm)
I placed the MD5-encrypted-passwords (from he vbulletin-database) next to the users in the /prive/user.txt file used by Webjeff F.M.
This is a piece of the code where you fill in the password:
echo "<input type=\"password\" name=\"passe\">\n";
And here it checks the pass:
if($login==$l && $passe==$p && $login!="" && $passe!="") {creer_id($buf[0],$buf[1],$l);$ok=1;}
I added this line above:
$passe=md5($passe);
But it doesn't work. After having added this line, you cannot login with the MD5-encrypted password nor with the normal password. Can anyone help me please??