Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+5 votes
948 views
in Q2A Core by
edited by
Is it possible to have different Q2A database on subdomains but all users maintained in one database? how feasible is this option?

reason,
1. subdomains can be moved to different servers if traffic is high.
2. Only one user base so no need to register multiple times.
3. subdomain content can be focused on one subject. (categories might solve this issue)

or is there any better way?

I'm just thinking on this concept....

1 Answer

+3 votes
by
 
Best answer
I'm afraid I don't think there's an easy way to do this.

Probably the best solution would be to write your own login/register/user functionality, and then use Q2A in the mode which integrates with an external user management system. That way you could centralize the logins. There's more information about that on the Q2A 'Advanced' page.

Another solution could be to centralize the qa_users and qa_userprofile tables in one database, and then use MySQL's FEDERATED table type to allow the other databases to access those central tables. I'm not sure that would work with everything Q2A does, but it seems quite possible.
by
Thanks Gideon!
...