Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
i use a member controls
and when i try get my lost password, I came a letter with the password hash
how generate new password? and send new, and save new hash in db
what hash method a used?
Hi Paul,
You can generate a new password using
Membership
.GeneratePassword(Membership.MinRequiredPasswordLength, Membership.MinRequiredNonAlphanumericCharacters);
Default Umbraco is using a Hashed format, you can change it by modifying the PasswordFormat Attribute on the Mmebership provider in the web.config file.
Cheers,
Richard
Easiest way is to change the PasswordFormat to plain, then log in with the hashed value, change the PasswordFormat back and update your password.
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
how generate new password?
i use a member controls
and when i try get my lost password, I came a letter with the password hash
how generate new password? and send new, and save new hash in db
what hash method a used?
Hi Paul,
You can generate a new password using
Membership
.GeneratePassword(Membership.MinRequiredPasswordLength, Membership.MinRequiredNonAlphanumericCharacters);
Default Umbraco is using a Hashed format, you can change it by modifying the PasswordFormat Attribute on the Mmebership provider in the web.config file.
Cheers,
Richard
Easiest way is to change the PasswordFormat to plain, then log in with the hashed value, change the PasswordFormat back and update your password.
is working on a reply...