PDA

View Full Version : New password not working



Stephane Boultgen
December 16, 2015, 07:36 PM
Hi,

After done a request of a new password, the login is not more working.

I try it 2 times, receive the confirmation mail with the right password, but the system dos not accept it.


Thanks for help

(Test it on luxoccas.eu , new version)

Stephane

Maaz Surchy
December 17, 2015, 08:14 AM
I have the same issue, I am just able to edit password via PhpMyAdmin.
Thats a bug, need to be fixed.

Stephane Boultgen
December 21, 2015, 06:18 AM
Hi,

I Hope the Flynax Team can help, or just tell us if it is a bug or not :-)

Thanks

Viktor
December 21, 2015, 06:45 AM
Hello All,

You can try to solve it yourself.

Open file: ftp://includes>>controllers>>remind.inc.php at line ~65
find code:


$sql = "UPDATE `" . RL_DBPREFIX . "accounts` SET `Password` = MD5('{$hash}'), `Password_hash` = '' WHERE `ID` = '{$account_id['ID']}' LIMIT 1";
$rlDb -> query( $sql );


and replace to


$sql = "UPDATE `" . RL_DBPREFIX . "accounts` SET `Password` = '{$hash}', `Password_hash` = '' ";
$sql .= "WHERE `ID` = {$account_id['ID']} LIMIT 1";
$rlDb->query($sql);


save and try to remind password again.

Stephane Boultgen
December 21, 2015, 06:52 AM
Hi,

Thanks. Works now


Stephane

Stephane Boultgen
December 21, 2015, 06:59 AM
Hi test it also for my Auto Site, but there it will not working.

Is that different for the car templates?

Maaz Surchy
December 21, 2015, 08:09 AM
Its not working on Flynax Real Estate, not on my website. I tried to change password from admin area with no hell. And now, same username has to different passwords, one for front-end and one for admin area.

Stephane Boultgen
December 29, 2015, 08:21 PM
Hi Viktor,

can you tell me if there is a different code necessary for auto template?
Because the code is not working on that.

Thanks for help

Fedor Zakharov
May 18, 2017, 03:44 PM
Thank you. I had the same problem. Now, I solved.