views:

235

answers:

3

Hi,

Say I want to develop a site with some CMS embedded in it - e.g., a Wordpress blog and phpbb forum.

What's the most convenient way to unify the log-in and sign-up process for my site?

Letting users have a different registration process for each part of the site would probably scare any sane user away.

EDIT

I prefer generic solutions, not necessarily for the aforementioned CMSs.

+1  A: 

This might be what you want:
http://www.wp-united.com/

dbemerlin
+1 for nice and useful idea, but I'm looking for a more generic solution, perhaps in the DB level.
Adam Matan
+1  A: 

Usually this is solved by a plugin into one CMS that uses or even syncs the login data from the other system.

For Wordpress / phpbb you might have a look at this

Using the data works, if the system does not need additional user data, so phpBB could not use an external login table because AFAIK it needs extra data for users (such as permissions).

Tarnschaf
+2  A: 

Both Wordpress and phpBB3 have OpenID authentication plugins -- you could use OpenID for both.

Kaleb Brasee