• This may be an unnecessary complication, however, I have three blogs running that are very similar and are interlinked, but on different subdomains of the same domain. Is there a way to link or share the user registration information, so that people do not have to register for each blog? I have a feeling I can probably edit something to refer to a single users.php file, but I’m not sure.

Viewing 2 replies - 1 through 2 (of 2 total)
  • You can link all three blogs to one of the blogs’ wp_users table, but that’s going to take a while.

    Another thing you can do is, when your reader tries to use BLOG A’s login info on BLOG B or C, you can do a DB query to check whether the user exists in BLOG A’s wp_users. If yes, add a new row in BLOG B’s (AND BLOG C’s) wp_users using the information from BLOG A, and vice versa. I think this is easier to implement if you just want to save your reader’s time. It’s not a good idea in a long run though.

    Maybe you want to check this out: http://wordpress.org/support/topic/168945?replies=1

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Sharing registration/log in ?’ is closed to new replies.