Cannot connect to my Umbraco backend (Username Or Password incorrect).
I've tried resetting the password via the database using this command : UPDATE umbracoUser set userdisabled=0, userPassword='/7IIcyNxAts3fvQYe2PI3d19cDU=' where id=0
and these values -
userPassword Value : bnWxWyFdCueCcKrqniYK9iAS+7E=
Password : default
userPassword Value : d9xnUXsUah9gycu7D0TpRYcx19c=
Password : admin
userPassword Value : /7IIcyNxAts3fvQYe2PI3d19cDU=
Password : password
Setting useLegacyEncoding back to true was the solution for me.
Although I had thought about this version specific breaking change when going from 7.5.x => 7.6.0, I didn't think about it again when going from 7.6.0 => 7.6.3!
Is there a simple way to get to the current Umbraco preferred situation where I could use useLegacyEncoding = false?
I also had to change the minimum password length from 10 to 8 on our Umbraco as our password was only 8 characters and it wouldn't let me log in. (That is done via the same line that the useLegacyEncoding is on)
Cannot connect to my Umbraco backend (Username Or Password incorrect).
I've tried resetting the password via the database using this command : UPDATE umbracoUser set userdisabled=0, userPassword='/7IIcyNxAts3fvQYe2PI3d19cDU=' where id=0
and these values -
userPassword Value : bnWxWyFdCueCcKrqniYK9iAS+7E= Password : default
userPassword Value : d9xnUXsUah9gycu7D0TpRYcx19c= Password : admin
userPassword Value : /7IIcyNxAts3fvQYe2PI3d19cDU= Password : password
All didn't work.
The version of Umbraco i am using is 7.6.1
Any help would be appreciated.
Thanks
HI
with Umbraco 7.6.1 the encoding of the password field has been updated, so this means the hash values you are using are probibly wrong.
you can force umbraco to use the old settings by setting
useLegacyEncoding
to true in the web.config this might get you into your site.Thanks Kevin!
Setting useLegacyEncoding back to true was the solution for me.
Although I had thought about this version specific breaking change when going from 7.5.x => 7.6.0, I didn't think about it again when going from 7.6.0 => 7.6.3!
Is there a simple way to get to the current Umbraco preferred situation where I could use useLegacyEncoding = false?
eg. db script with some steps described?
I also had to change the minimum password length from 10 to 8 on our Umbraco as our password was only 8 characters and it wouldn't let me log in. (That is done via the same line that the useLegacyEncoding is on)
ah thankyou! that makes a lot of sense now I think about it
is working on a reply...