Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+4 votes
310 views
in Plugins by
i am creating  a network site , how i can achieve same points on both websites ,
by
In qa-config.php ,there is  a config for use same user table but not same point
by
hence , i am asking is any solution for this

1 Answer

+2 votes
by
selected by
 
Best answer
In order to achieve point sharing between sites you might need to re-write around 5% of the Q2A core. If you have a significant amount of time and a deep knowledge on PHP and Q2A, then you can achieve that. If not, the only answer that makes sense is "it is not possible".
by
I was thinking a plugin that overrides qa_db_points_update_ifuser() and qa_db_points_calculations() to query points from both databases might suffice, but even that would not be a trivial matter AFAICS. And it doesn't even address mapping users between the databases.
by
Yes, that's just one side of it. There are many issues to keep data in sync. This even involves custom plugins which might need to be updated as well. Also, whatever approach that is followed to implement this will, most likely, not going to be very performant. The function you mention is called with almost any write action executed by a user.

Not to mention we are assuming the sites are under the same MySQL instance.
...