Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
What am I doing wrong here:
<add name="UmbracoMembershipProvider" type="Umbraco.Web.Security.Providers.MembersMembershipProvider, Umbraco" minRequiredNonalphanumericCharacters="0" minRequiredPasswordLength="4" useLegacyEncoding="true" enablePasswordRetrieval="false" enablePasswordReset="true" requiresQuestionAndAnswer="false" defaultMemberTypeAlias="Customer" passwordFormat="Hashed" umbracoApprovePropertyTypeAlias="approved" umbracoLockPropertyTypeAlias="lockedOut" umbracoCommentPropertyTypeAlias="comments" umbracoLastLoginPropertyTypeAlias="lastLogonDate" umbracoPasswordRetrievalQuestionPropertyTypeAlias="passwordRetrievalQuestion" umbracoPasswordRetrievalAnswerPropertyTypeAlias="passwordRetrievalAnswer" />
<add name="UmbracoMembershipProvider"
type="Umbraco.Web.Security.Providers.MembersMembershipProvider, Umbraco"
minRequiredNonalphanumericCharacters="0" minRequiredPasswordLength="4"
useLegacyEncoding="true" enablePasswordRetrieval="false"
enablePasswordReset="true" requiresQuestionAndAnswer="false" defaultMemberTypeAlias="Customer"
passwordFormat="Hashed"
umbracoApprovePropertyTypeAlias="approved" umbracoLockPropertyTypeAlias="lockedOut"
umbracoCommentPropertyTypeAlias="comments" umbracoLastLoginPropertyTypeAlias="lastLogonDate"
umbracoPasswordRetrievalQuestionPropertyTypeAlias="passwordRetrievalQuestion"
umbracoPasswordRetrievalAnswerPropertyTypeAlias="passwordRetrievalAnswer" />
var member = ApplicationContext.Current.Services.MemberService.CreateMemberWithIdentity(email, email, email, "Customer"); ApplicationContext.Current.Services.MemberService.Save(member); member = ApplicationContext.Current.Services.MemberService.GetById(member.Id); member.PasswordQuestion = secretQuestion; member.RawPasswordAnswerValue = secretAnswer; member.IsApproved = false; ApplicationContext.Current.Services.MemberService.AssignRole(member.Id, "Customers"); ApplicationContext.Current.Services.MemberService.Save(member);
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
6.2.1. Create member
What am I doing wrong here:
is working on a reply...