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
Things i did till now:
1] Create a user of type profile, checked the boxes for show profile & memebers can edit.
2] Tweaked the webconfig file.
3] When i go to the profile page, all i see is a update profile button...no fields are being displayed...
How do i display the members from database onto the profile page ?
Someone please help !
Thanks
Be sure to point to the correct member type in the webconfig and make sure the field names in the web.config match the field aliases in the profile
What part of this, is the "member type"?
<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" /> </properties> </profile>
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
Profile Page does not work...
Things i did till now:
1] Create a user of type profile, checked the boxes for show profile & memebers can edit.
2] Tweaked the webconfig file.
3] When i go to the profile page, all i see is a update profile button...no fields are being displayed...
How do i display the members from database onto the profile page ?
Someone please help !
Thanks
Be sure to point to the correct member type in the webconfig and make sure the field names in the web.config match the field aliases in the profile
What part of this, is the "member type"?
Thanks
<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" />
</properties>
</profile>
is working on a reply...