I am having the same issue, I just updated to 7.2 RC yesterday to fix a few bugs found in earlier versions of Umbraco and now all of my membership logins are broken. I don't know if this is something that will be fixed before our website launch (January 1), or if I need to downgrade to an earlier version. These Umbraco bugs have really been killing us lately.
We tracked this down on our end... We had a custom property type (passwordResetToken) that was defaulting to null in the cmsPropertyData table. The code is not checking the PropertyValue.Value property for null in MembershipHelper.GetMemberPropertiesViewModel in the Umbraco.Web.Security namespace (line 420 of the source file)
Downloading the source and adding the null check, then recompiling and deploying the new dll (umbraco.dll) fixes this for us temporarily. The other option is to go into the cmsPropertyData table and update all the null values for that property type to empty string, but it seems as though the source should be checking for a null value anyways.
After updating to 7.2 RC yesterday I also found that quite a few 'updates' to my code needed to be made. Shame on me for being lazy in the original code and assuming an empty string would be returned, but it is still frustrating to have to go back and fix everything... wish that would have been documented as a breaking change or something, just to give us a heads up.
Umbraco 7.2 RC GetCurrentMemberProfileModel Null Ref
HI All I'm getting a null ref error.
Stack :
Hello,
You can report issues here: http://issues.umbraco.org/dashboard#newissue=yes
Jeroen
Thanks I will
I am having the same issue, I just updated to 7.2 RC yesterday to fix a few bugs found in earlier versions of Umbraco and now all of my membership logins are broken. I don't know if this is something that will be fixed before our website launch (January 1), or if I need to downgrade to an earlier version. These Umbraco bugs have really been killing us lately.
We tracked this down on our end... We had a custom property type (passwordResetToken) that was defaulting to null in the cmsPropertyData table. The code is not checking the PropertyValue.Value property for null in MembershipHelper.GetMemberPropertiesViewModel in the Umbraco.Web.Security namespace (line 420 of the source file)
Downloading the source and adding the null check, then recompiling and deploying the new dll (umbraco.dll) fixes this for us temporarily. The other option is to go into the cmsPropertyData table and update all the null values for that property type to empty string, but it seems as though the source should be checking for a null value anyways.
After updating to 7.2 RC yesterday I also found that quite a few 'updates' to my code needed to be made. Shame on me for being lazy in the original code and assuming an empty string would be returned, but it is still frustrating to have to go back and fix everything... wish that would have been documented as a breaking change or something, just to give us a heads up.
is working on a reply...