Copied to clipboard

Flag this post as spam?

This post will be reported to the moderators as potential spam to be looked at


  • Micah Smith 3 posts 23 karma points
    Dec 13, 2010 @ 08:22
    Micah Smith
    0

    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.

  • Rik Helsen 670 posts 873 karma points
    Dec 13, 2010 @ 10:15
    Rik Helsen
    0

    same here, never got it to work ....

  • Happyfanaticsalsero 59 posts 81 karma points
    Dec 13, 2010 @ 12:00
    Happyfanaticsalsero
    0

    I add my dissappointment as well.

    Never got it to work on Umbraco 4.5.2, SQL2008/IIS7, .NET4.0.

  • Micah Smith 2 posts 22 karma points
    Dec 13, 2010 @ 22:13
    Micah Smith
    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.

  • Bo Kingo Damgaard 157 posts 456 karma points
    Jan 12, 2011 @ 14:35
    Bo Kingo Damgaard
    0

    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

  • Daniel Bardi 927 posts 2562 karma points
    Jan 13, 2011 @ 09:43
    Daniel Bardi
    0

    That's the limitation in this version.  I might fix it when I have time.

  • 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.

Please Sign in or register to post replies