Blueskidoo Posted March 13, 2009 Share Posted March 13, 2009 Ahhh!I changed my e-mail in the back office as administrator, and now I can't log in!Help!How do fix this???? Link to comment Share on other sites More sharing options...
TropischBruin Posted March 13, 2009 Share Posted March 13, 2009 Use the search? Link to comment Share on other sites More sharing options...
Blueskidoo Posted March 14, 2009 Author Share Posted March 14, 2009 So, I have tried changing the password through the phpmyadmin function, but I still can't get a password to work.I have tried logging on with the new password from other computers and I can't get it to work.I tried creating a new employee from scratch but I can't get that to work either.So what's next? Link to comment Share on other sites More sharing options...
Blueskidoo Posted March 14, 2009 Author Share Posted March 14, 2009 UPDATE ps_employee SET passwd=md5("hgI3M9S1Uv45wDqkqvGNYF.xAamJY9.zKpykqHCgCxE5m1ozAtQBjFIi123456789") WHERE email="[email protected]" I tried using that also and I can't get in with that info. I get the "invalid password" error.And it won't send me new passwords.So? Link to comment Share on other sites More sharing options...
ruilong Posted March 14, 2009 Share Posted March 14, 2009 Why dosn't it send new password? is it because the last renew date for the password is to tight? try setting that date to another date, and make sure the email is correct so you get the new password. Link to comment Share on other sites More sharing options...
Blueskidoo Posted March 14, 2009 Author Share Posted March 14, 2009 I don't know why I am not getting e-mails from the shop.I did figure out that ps1_employee and ps_employee didn't match, so I decided to change them so they matched, but that didn't help.So now what? Link to comment Share on other sites More sharing options...
ruilong Posted March 14, 2009 Share Posted March 14, 2009 open password.phpfind $pwd = Tools::passwdGen(); and change to $pwd = ‘NEWPASSWORD’; You can now use NEWPASSWORD to login. don't forget to change back when you are done. Link to comment Share on other sites More sharing options...
Dave Egerton Posted March 14, 2009 Share Posted March 14, 2009 Hi RulongThere is no $pwd = Tools::passwdGen(); in password.php in version 1.1, the line is$customer->passwd = Tools::encrypt($password = Tools::passwdGen(intval(MIN_PASSWD_LENGTH))); Link to comment Share on other sites More sharing options...
ruilong Posted March 14, 2009 Share Posted March 14, 2009 you should open the password.php in the admin folder. Link to comment Share on other sites More sharing options...
Dave Egerton Posted March 14, 2009 Share Posted March 14, 2009 Ah I see, thanksI tried this but could not get it to work for myself however Link to comment Share on other sites More sharing options...
Damien Metzger Posted March 14, 2009 Share Posted March 14, 2009 You don't care about the password as long as the mail is valid.Just click on "forgot my password"... Link to comment Share on other sites More sharing options...
Blueskidoo Posted March 15, 2009 Author Share Posted March 15, 2009 Changing the password in the password.php file worked for me after I told it to e-mail me a new password.Thanks so much!Lesson of the day- have two admin log-ins and don't change them both at the same time!I still don't know why it wouldn't send me a new password. Link to comment Share on other sites More sharing options...
lacle Posted March 17, 2009 Share Posted March 17, 2009 Tricket med 'NEWPASSWORD' fungerar. Halleluja :-)' NEWPASSWORD' works !!!! Thanks a lotI found in line 21 (Notepad++): $customer->passwd = Tools::encrypt($password = Tools::passwdGen(MIN_PASSWD_LENGTH));and simply changed to: $customer->passwd = 'NEWPASSWORD';Tack så hjärtligt :-) Link to comment Share on other sites More sharing options...
Recommended Posts