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
I'm trying to create a new membershipprovider in Umbraco 7.1.4 and thus i'm extending my class with UmbracoMembershipProvider, but it wants a type. A type of what?
Hi Jan,
Change the type of UmbracoMembershipProvider but leave the name the same.
<membership defaultProvider="TechBureauMembershipProvider" userIsOnlineTimeWindow="2880"> <providers> <clear/> <add name="UmbracoMembershipProvider" type="TechBureau.Web.providers.TechBureauMembershipProvider" enablePasswordRetrieval="false" enablePasswordReset="false" requiresQuestionAndAnswer="false" defaultMemberTypeAlias="Member" passwordFormat="Hashed"/> <add name="UsersMembershipProvider" type="umbraco.providers.UsersMembershipProvider" enablePasswordRetrieval="false" enablePasswordReset="false" requiresQuestionAndAnswer="false" passwordFormat="Hashed"/>
THanks, Alex
No that's not it. When i'm writing my new provider class i have to extend the UmrbacoMemeshipProvider class
public class MyCustomMembershipProvider:UmbracoMembershipProvider<aTypeOfWhat?> { }
but it wants a type. a type of what?
If you want to create new membersip provider, you have to be nested from MembershipProvider class.
public class MyMembershipProvider : MembershipProvider
is working on a reply...
This forum is in read-only mode while we transition to the new forum.
You can continue this topic on the new forum by tapping the "Continue discussion" link below.
Continue discussion
Extending membershipprovider
I'm trying to create a new membershipprovider in Umbraco 7.1.4 and thus i'm extending my class with UmbracoMembershipProvider, but it wants a type. A type of what?
Hi Jan,
Change the type of UmbracoMembershipProvider but leave the name the same.
THanks, Alex
No that's not it. When i'm writing my new provider class i have to extend the UmrbacoMemeshipProvider class
but it wants a type. a type of what?
If you want to create new membersip provider, you have to be nested from MembershipProvider class.
is working on a reply...
This forum is in read-only mode while we transition to the new forum.
You can continue this topic on the new forum by tapping the "Continue discussion" link below.