-
Hi everybody, and hi again to all who's left from the old Geodesic (and Kiwi) forums. Hope you are all good. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
I think I might have found a solution. After trying several ways of sending the request non-statically with no success, I tried to change this: $password_hashed = geoPC::get_hashed_password($info['username'], $info['password'], $hash_type); To this: $password_hashed = geoPC::getInstance(); It seems to work, my password is no changed. I would still love to know if this was the right solution, or if I may have done something awfully stupid. :) |
Beta Was this translation helpful? Give feedback.
-
Yeah, I thought I had fixed it, but today it was not possible to log in... :D And as I dont know how to decrypt passwords, I had to just drop in the 4 folders and do the setup once again. Back to square one :). $password_hashed = geoPC::getInstance()->get_hashed_password($info['username'], $info['password'], $hash_type); So thank you very much, who ever sent me the mail! (No name was in the mail) :) |
Beta Was this translation helpful? Give feedback.
Yeah, I thought I had fixed it, but today it was not possible to log in... :D And as I dont know how to decrypt passwords, I had to just drop in the 4 folders and do the setup once again. Back to square one :).
Luckily someone very nice from here sent me an email this morning, with a solution that really works. (this timeI have tested to log out and in again many times after p.word change :D) What he or she sent was this:
$password_hashed = geoPC::getInstance()->get_hashed_password($info['username'], $info['password'], $hash_type);
So thank you very much, who ever sent me the mail! (No name was in the mail) :)