Hi all,
What’s the reason behind a need to come up with a strong password every time I create new Umbraco Member?
With Users, Umbraco creates a password for me and displays it - that’s what I’d expect on Members as well.
Is there a way to overwrite / change this behaviour so it works like in Users management?
pbldk
(pbl_dk)
2
Have you changed the settings for members in Security? You could use something like this:
"Security": {
"MemberPassword": {
"RequiredLength": 6,
"RequireNonLetterOrDigit": false,
"RequireDigit": false,
"RequireLowercase": false,
"RequireUppercase": false,
"HashAlgorithmType": "PBKDF2.ASPNETCORE.V3",
"MaxFailedAccessAttemptsBeforeLockout": 10
}
}
I have just tested these settings, and I was able to create a member with a password (totally unsafe) like “123456789”.
More information here: Security Settings | Umbraco CMS
Not sure if you can auto-set a password for a member without tapping into the backend code.