I've created a custom membership provider to allow me to set certain access control properties such as minimum password length and set a minimum number of upper case and numeric characters for my password.
I've done this by inheriting from UmbracoMembershipProvider and overriding the ChangePassword and ValidateUser methods in my custom provider.
Unfortunately, this has broken MemberExport and I am receiving the following error:
We are very sorry, but MemberExport only works with the default Umbraco Membership provider
Please could you advise if there is a work around for this, or do I need to find some other way of enforcing my access control logic?
Yes this is possible since you are inheriting from the default provider. See section 6.2 of the manual http://soetemansoftware.nl/member-export/downloads how to configure memberexport for that scenario.
Basically you need to add the type of your custom provider to memberexport.config
Member Export with Custom Membership Provider
Hi Richard,
I've created a custom membership provider to allow me to set certain access control properties such as minimum password length and set a minimum number of upper case and numeric characters for my password.
I've done this by inheriting from UmbracoMembershipProvider and overriding the ChangePassword and ValidateUser methods in my custom provider.
Unfortunately, this has broken MemberExport and I am receiving the following error:
We are very sorry, but MemberExport only works with the default Umbraco Membership provider
Please could you advise if there is a work around for this, or do I need to find some other way of enforcing my access control logic?
Thanks in advance.
Phil Gilligan
Hi Phil,
Yes this is possible since you are inheriting from the default provider. See section 6.2 of the manual http://soetemansoftware.nl/member-export/downloads how to configure memberexport for that scenario.
Basically you need to add the type of your custom provider to memberexport.config
Hope this helps,
Richard
Brilliant! Thanks Richard.
is working on a reply...