Membership Provider Options
Skiltz
Posted: Thursday, February 14, 2008 11:00:10 PM

Rank: Devotee

Joined: 12/6/2007
Posts: 62
Can someone tell me where I can find this on codeplex and if its working. I need it for AD authentication.

Thanks,
Matthew

New Zealand Umbracoee
kalpa
Posted: Thursday, February 14, 2008 11:43:19 PM

Rank: Fanatic

Joined: 7/19/2006
Posts: 496
Location: Göteborg, Sweden
Hello Matthew!

It is included in changeset as far back as early november, but beware since there sometime the MySQL support starts appearing which could break stuff - work in progress you know ; )

I'm currently running a build from changeset 30270 and the core is nice in there but the TinyMCE is full of strange things like images that disappear on save, Macros in the editor throwing "Object not found" errors etc...

So to save yourself some head ache (and VERY late nights), pick a version as far back as possible if you're think about production usage ; )

// ; ) Kalle




" - Yeah I'd like to share your point of view, as long as it's my view too... (http://www.d-a-d.dk/lyrics/pointofview)
Skiltz
Posted: Friday, February 15, 2008 12:08:20 AM

Rank: Devotee

Joined: 12/6/2007
Posts: 62
yeah since writing the first post I downloaded the lastest chnageset and tinyMCE seems a bit screwed....seemded to work fine in firefox but ie....anyhow thats not the issue.

Any chance you get give me quick rundown on how to implement membership provider once I have downloaded a better change set or even better how to implement with AD. I literally have no idea where to start, i'm hoping it just falls into place :ermm:

Like what modifications would I need to make to web.config? Do I need to add any database changes?



New Zealand Umbracoee
kalpa
Posted: Friday, February 15, 2008 12:17:57 AM

Rank: Fanatic

Joined: 7/19/2006
Posts: 496
Location: Göteborg, Sweden
To use the umbraco provider you'll have to add this to the system.web section of web.config:

Code:


        <!-- Membership Provider -->
        <membership defaultProvider="UmbracoMembershipProvider" userIsOnlineTimeWindow="15">
            <providers>
                <clear/>
                <add
                 name="UmbracoMembershipProvider"
                 type="umbraco.providers.UsersMembershipProvider"
                 enablePasswordRetrieval="false"
                 enablePasswordReset="false"
                 requiresQuestionAndAnswer="false"/>
                </providers>
        </membership>



But when it comes to using AD login instead of the Umbraco way I can't give you much info since I have absolutely no experience with that... :no:; /

A wild guess would be that that part is a general ASP.Net knowledge..

This might be a good starting point:
http://msdn2.microsoft.com/en-us/library/yh26yfzy(VS.80).aspx

// ; ) Kalle

" - Yeah I'd like to share your point of view, as long as it's my view too... (http://www.d-a-d.dk/lyrics/pointofview)
kalpa
Posted: Friday, February 15, 2008 12:19:06 AM

Rank: Fanatic

Joined: 7/19/2006
Posts: 496
Location: Göteborg, Sweden
Or this one from 4 Guys from Rolla:
http://aspnet.4guysfromrolla.com/articles/120705-1.aspx

" - Yeah I'd like to share your point of view, as long as it's my view too... (http://www.d-a-d.dk/lyrics/pointofview)
Users browsing this topic
Guest


You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.