Back Office user change password control does not verify current password
I have a Umbraco 7.5.11 site with sql server 2012 r2 deployed in Azure. In back-office change password screen for logged in user's profile section only having "New password and Confirm New Password" text boxes . I wants to verify current password with new and confirm password to change password. How can i do this?
Is it possible to enable old password verification only in profile screen. Because admin don't know the password of other users if someone wants to change password.
Admins will need to use the reset password checkbox. Once that one is enabled and the user is saved, a new random password will be generated and displayed on the screen. If you still need to change the password after that you can use the randomly generated one as the old password.
Back Office user change password control does not verify current password
I have a Umbraco 7.5.11 site with sql server 2012 r2 deployed in Azure. In back-office change password screen for logged in user's profile section only having "New password and Confirm New Password" text boxes . I wants to verify current password with new and confirm password to change password. How can i do this?
In the
UsersMembershipProvider
setallowManuallyChangingPassword
to false.It works as expected. Thank you very much Sebastiaan.
Hi Sebastiaan,
Is it possible to enable old password verification only in profile screen. Because admin don't know the password of other users if someone wants to change password.
Admins will need to use the reset password checkbox. Once that one is enabled and the user is saved, a new random password will be generated and displayed on the screen. If you still need to change the password after that you can use the randomly generated one as the old password.
is working on a reply...