Properties are on a tab named 'Personal', properties have 'Member can edit', and 'Show on profile' checked. Profile page is secured, and login to access works fine. What am I missing?
Thanks kindly, and I appreciate your work on this package.
I made my own macro, tied to a user control - I grabbed the source code for Dascoba's ProfileEditor. Took the ascx, and the cs code, and created a UserControl of my own and threw the ascx and .cs into usercontrols folder, and selected it as my macro. I added an OnInit to help the tabs work properly, pulled function calls from the Page_Load.
What I do not get - is the Umbraco divs in the tab container. Because it is using the ajax .net controls, it is in tables, rather than the divs of the umbraco tabview and company - which I'm not sure yet how to implement on the front end if so desired.
It seems that the properties has to be on another tab than "generic properties". If I create a new tab and move the property, I'm able to edit the field
4.5.2 - Can't get profile properties to show.
I'm not getting any error - "There are no properties to show." - but no properties are displayed - only the Update Profile button.
Profile in web.config:
<!-- Member Profile Provider -->
<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="address" allowAnonymous="false" provider="UmbracoMemberProfileProvider" type="System.String" />
</properties>
</profile>
Properties are on a tab named 'Personal', properties have 'Member can edit', and 'Show on profile' checked. Profile page is secured, and login to access works fine. What am I missing?
Thanks kindly, and I appreciate your work on this package.
same here, never got it to work ....
I add my dissappointment as well.
Never got it to work on Umbraco 4.5.2, SQL2008/IIS7, .NET4.0.
I made my own macro, tied to a user control - I grabbed the source code for Dascoba's ProfileEditor. Took the ascx, and the cs code, and created a UserControl of my own and threw the ascx and .cs into usercontrols folder, and selected it as my macro. I added an OnInit to help the tabs work properly, pulled function calls from the Page_Load.
protected override void OnInit(EventArgs e)
{
base.OnInit(e);
this._currentMember = Member.GetCurrentMember();
this.BuildPropertyEditor();
}
And it works for me.
What I do not get - is the Umbraco divs in the tab container. Because it is using the ajax .net controls, it is in tables, rather than the divs of the umbraco tabview and company - which I'm not sure yet how to implement on the front end if so desired.
Hi
It seems that the properties has to be on another tab than "generic properties". If I create a new tab and move the property, I'm able to edit the field
/Bo Kingo
That's the limitation in this version. I might fix it when I have time.
is working on a reply...