Closed nikcio closed 3 years ago
@nikcio Did you experience this for both backoffice user authentication, and members, or just backoffice users? Thanks!
As I remember I only tried authenticating backoffice users.
This error should be fixed in future versions and will only throw a warning instead of an error. See this issue posted on the Umbraco CMS repo for more info: umbraco/Umbraco-CMS#9244
I've encountered a bug when using AuthU in Umbraco 8.8.0.
The bug is described in a post here: https://our.umbraco.com/forum/using-umbraco-and-getting-started/103925-authu-not-working-properly-after-upgrade-to-umbraco-880
The problem stems from the validation of an IUser where an error is thrown from a function called
IMembershipMemberService<IUser>.SetLastLogin
I've implemented a fix with another validation function which I was told the new umbraco version wants use in replacement of the current:
My solution is posted here: https://our.umbraco.com/forum/using-umbraco-and-getting-started/103925-authu-not-working-properly-after-upgrade-to-umbraco-880#comment-324587
The solution is to change the
ValidateUser
function of theMembershipProvideOAuthUserService
to the following:I've also reported this behavior as an issue to the Umbraco CMS repo : https://github.com/umbraco/Umbraco-CMS/issues/9244