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
hi
i have installed the latest version onto a 4.0.4.2 site.
i have added to the web.config below the existing membership provider section, as follows:
<!-- Membership Provider -->
<membership defaultProvider="UmbracoMembershipProvider" userIsOnlineTimeWindow="15">
<providers>
<clear />
<add name="UmbracoMembershipProvider" type="umbraco.providers.members.UmbracoMembershipProvider" enablePasswordRetrieval="true" enablePasswordReset="false" requiresQuestionAndAnswer="false" defaultMemberTypeAlias="Customer" passwordFormat="Clear" />
<add name="UsersMembershipProvider" type="umbraco.providers.UsersMembershipProvider" enablePasswordRetrieval="false" enablePasswordReset="false" requiresQuestionAndAnswer="false" passwordFormat="Hashed" />
</providers>
</membership>
<!--FHD added for member profile editing -->
<profile defaultProvider="UmbracoMemberProfileProvider" enabled="true">
<providers> <clear />
<add name="UmbracoMemberProfileProvider" type="umbraco.providers.members.UmbracoProfileProvider, umbraco.providers"/>
<properties>
<add name="firstName" allowAnonymous="false" provider="UmbracoMemberProfileProvider" type="System.String" />
<add name="lastName" allowAnonymous="false" provider="UmbracoMemberProfileProvider" type="System.String" />
<add name="company" allowAnonymous="false" provider="UmbracoMemberProfileProvider" type="System.String" />
<add name="jobTitle" allowAnonymous="false" provider="UmbracoMemberProfileProvider" type="System.String" />
</properties>
</profile>
i assume this is where i have gone wrong, but i need clarification on how i should add it.
i am currently getting only the following copy on the edit page:
"There are no settings available for your profile"
can you give me a hint? - what am i doing wrong?
I might be asking the obvious, but here goes:
In the Member section in Umbraco, on the member type Customer, did you check which of the properties to show for the profile?
yes, all the various properties have both the 'member can edit' and the 'show on profile' boxes ticked
i think i have found the solution:
all my additional properties were on the 'properties' tab.
i have added a new tab, 'member', and assigned my custom member properties to that tab. they now seem to appear in the 'edit profile' page.
all seems well.
HOWEVER, is it possible to edit the member email address? do i have to create a custom profile edit form to manage that?
Any help on this would be great.
I'm really not sure how you have implemented this, but I guess what you need to do is grap the member being edited, set the Email property on that member and save.
Yes you can edit the email address of the profile.
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
ERROR: There are no settings available for your profile
hi
i have installed the latest version onto a 4.0.4.2 site.
i have added to the web.config below the existing membership provider section, as follows:
<!-- Membership Provider -->
<membership defaultProvider="UmbracoMembershipProvider" userIsOnlineTimeWindow="15">
<providers>
<clear />
<add name="UmbracoMembershipProvider" type="umbraco.providers.members.UmbracoMembershipProvider" enablePasswordRetrieval="true" enablePasswordReset="false" requiresQuestionAndAnswer="false" defaultMemberTypeAlias="Customer" passwordFormat="Clear" />
<add name="UsersMembershipProvider" type="umbraco.providers.UsersMembershipProvider" enablePasswordRetrieval="false" enablePasswordReset="false" requiresQuestionAndAnswer="false" passwordFormat="Hashed" />
</providers>
</membership>
<!--FHD added for member profile editing -->
<profile defaultProvider="UmbracoMemberProfileProvider" enabled="true">
<providers> <clear />
<add name="UmbracoMemberProfileProvider" type="umbraco.providers.members.UmbracoProfileProvider, umbraco.providers"/>
</providers>
<properties>
<clear />
<add name="firstName" allowAnonymous="false" provider="UmbracoMemberProfileProvider" type="System.String" />
<add name="lastName" allowAnonymous="false" provider="UmbracoMemberProfileProvider" type="System.String" />
<add name="company" allowAnonymous="false" provider="UmbracoMemberProfileProvider" type="System.String" />
<add name="jobTitle" allowAnonymous="false" provider="UmbracoMemberProfileProvider" type="System.String" />
</properties>
</profile>
i assume this is where i have gone wrong, but i need clarification on how i should add it.
i am currently getting only the following copy on the edit page:
"There are no settings available for your profile"
can you give me a hint? - what am i doing wrong?
I might be asking the obvious, but here goes:
In the Member section in Umbraco, on the member type Customer, did you check which of the properties to show for the profile?
yes, all the various properties have both the 'member can edit' and the 'show on profile' boxes ticked
i think i have found the solution:
all my additional properties were on the 'properties' tab.
i have added a new tab, 'member', and assigned my custom member properties to that tab. they now seem to appear in the 'edit profile' page.
all seems well.
HOWEVER, is it possible to edit the member email address? do i have to create a custom profile edit form to manage that?
Any help on this would be great.
I'm really not sure how you have implemented this, but I guess what you need to do is grap the member being edited, set the Email property on that member and save.
Yes you can edit the email address of the profile.
is working on a reply...