But when I access website.com/umbraco/adminreset/useractions/reset I get the following error: HTTP Error 404.0 - Not Found
I have attempted to request a new password but I get the following error: Request password reset failed for email eventhough I use the SMTP settings from my host:
I am completely stuck... I have no idéa how I can gain access to my shop. I'm completely locked out and frustrated. I'm prepared to pay someone to help me gain access to my backend again.
First question here might be "does the rest of your site load?".
I've seen a number of times where the rest of the site has a compile issue but your Backoffice screen is still giving the appearance of being up+functional due to the angularJs behaviours.
Next, I'd say don't update any rows in the DB but for the userdisabled flag.
I may be misreading the UPDATE statement given that you're probably not going to update your password to be 'default' but, rather, that is only a placeholder.
(it's possible to recover a mistakenly reset password hash, if need be…)
Let us know where you're at as i'm sure you're banging away at this and may have some new info that can help get you back in action.
Thank you for reaching out!
My site works just fine, the only thing not working i me being able to login.
Currently, my backoffice doesn't show any errors in the console. Having the database as SDF file, how come I can't change the password there, reload the project and login? I mean... I have direct access to the server and none of the users is Disabled or has NoConosole enabled.
Hmm, turns out that I don't have any tooling on this machine to query/reference any v8 SDF. I'd be surprised if the schemas are any different than from a full MDF (i hope!).
Working under that assumption anyway - are your
[failedLoginAttempts] == 0 ?
The [userDisabled] would be toggled only as result of a manual action through the backoffice. The too many failed attempts would be result of a few fat-fingered login attempts - how does that row look?
Ah.
I'm unsure if you're using v7(forum tags) or if this is a v8 site (since you're trying v8 packages as noted above). This may be relevant for the useLegacyEncoding attribute.
Thank you for doing the research! I tried setting legacuEncoding to true. I have also tried setting passwordRetrieval to true which gives me the following error:
Parser Error Message: Provider can not retrieve a hashed password
alright. TIL: what you were doing with the userPassword = 'default' actions. -new to me! Were you able to complete the next step of the reset admin process and "run the installer" ?
I misfired in hurry to reply before a meeting and copied the wrong attribute but indented to grab the following password setting :
enablePasswordReset (default 'true'): Indicates whether the membership provider supports password reset for users
It's curious the failedAttempts keeps incrementing despite your efforts. I'd try not to get stuck on a side game there but rather just increase, temporarily, the maxInvalidPasswordAttempts to something unreasonably large so that's not an issue here.
Umbraco 7 unable to reset password
Hi lads,
I'm running Umbraco 7.11.1 and suddently being locked out.
I use a compact database located in the App_Data folder. My locked out user looks like this:
I have tried running the following SQL on my own user but also the admin using ID 0:
And resetting application pool afterwards.
I have tried the Umbraco 8 reset password plugin: https://our.umbraco.com/packages/developer-tools/umbraco-admin-reset/
But when I access website.com/umbraco/adminreset/useractions/reset I get the following error: HTTP Error 404.0 - Not Found
I have attempted to request a new password but I get the following error:
Request password reset failed for email
eventhough I use the SMTP settings from my host:I have also gone through https://our.umbraco.com/Documentation/Reference/Security/reset-admin-password-v8 but I can't run the installer because I need to be logged in.
I am completely stuck... I have no idéa how I can gain access to my shop. I'm completely locked out and frustrated. I'm prepared to pay someone to help me gain access to my backend again.
First question here might be "does the rest of your site load?". I've seen a number of times where the rest of the site has a compile issue but your Backoffice screen is still giving the appearance of being up+functional due to the angularJs behaviours.
Next, I'd say don't update any rows in the DB but for the
userdisabled
flag. I may be misreading the UPDATE statement given that you're probably not going to update your password to be 'default' but, rather, that is only a placeholder.(it's possible to recover a mistakenly reset password hash, if need be…)
Let us know where you're at as i'm sure you're banging away at this and may have some new info that can help get you back in action.
Hi Damian,
Thank you for reaching out! My site works just fine, the only thing not working i me being able to login.
Currently, my backoffice doesn't show any errors in the console. Having the database as SDF file, how come I can't change the password there, reload the project and login? I mean... I have direct access to the server and none of the users is Disabled or has NoConosole enabled.
Hmm, turns out that I don't have any tooling on this machine to query/reference any v8 SDF. I'd be surprised if the schemas are any different than from a full MDF (i hope!). Working under that assumption anyway - are your
[failedLoginAttempts]
== 0 ?The
[userDisabled]
would be toggled only as result of a manual action through the backoffice. The too many failed attempts would be result of a few fat-fingered login attempts - how does that row look?My row looks exactly like this:
My membership provider looks like this:
Ah. I'm unsure if you're using v7(forum tags) or if this is a v8 site (since you're trying v8 packages as noted above). This may be relevant for the
useLegacyEncoding
attribute.There's a possibly related post here: https://our.umbraco.com/forum/using-umbraco-and-getting-started/91489-switching-back-to-uselegacyencoding-true
which references the solution for this post: https://our.umbraco.com/forum/using-umbraco-and-getting-started/88852-changing-uselegacyencoding-from-true-to-false
any of this sounding familiar/relevant ??
Heads up on the following provider setting ;) as this will block your password reset via email option :
enablePasswordRetrieval="false"
Hi Damian,
Thank you for doing the research! I tried setting legacuEncoding to true. I have also tried setting passwordRetrieval to true which gives me the following error:
alright.
TIL: what you were doing with the
userPassword = 'default'
actions. -new to me! Were you able to complete the next step of the reset admin process and "run the installer" ?I misfired in hurry to reply before a meeting and copied the wrong attribute but indented to grab the following password setting :
It's curious the failedAttempts keeps incrementing despite your efforts. I'd try not to get stuck on a side game there but rather just increase, temporarily, the
maxInvalidPasswordAttempts
to something unreasonably large so that's not an issue here.is working on a reply...