Since Umbraco 7.7, gone are the old ways you can reset your password by simply updating directly against the DB. Clear passwords no longer works and the admin tool created for easily doing this needs an update too since time of writing this post.
Here’s what you can do in the mean time if you can’t get into the back office and your password isn’t working on your local.
- Get an SMTP server. I personally use SendGrid on Azure. It’s free and easy to setup. Have the server, username and password ready to use once it’s done.
- Update the web.config with the following:
<smtp deliveryMethod="Network" from=""> <network defaultCredentials="false" host="<smtp server" port="587" enableSsl="true" password="" userName="" />
- Spin up the site the forgotten password link should appear underneath the login screen.Login Screen:
Email Contents:
Any issues, give me a shout and I’d be happy to help out.