Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
0 votes
214 views
in Q2A Core by
I have 2 Q2A installations and I would like to keep them in sync, so that questions (and answers) that appear on one will automatically show up in the other. It does not have to be in real time. As long as they eventually sync up. But it should be automatic, with no human intervention.

Any suggestions, please?

Thanks!

Yongtao
Q2A version: 1.7.4

1 Answer

+1 vote
by
The best method would be an event plugin, that looks for the q_post/a_post/c_post events, and then sends the data to the other server. On the second server you'd probably need a page plugin to take that data and add it in the second database.

Then you'd need to do the opposite - ie have the event plugin on the second site that posts to the first site.

Check out the docs for further details: http://docs.question2answer.org/plugins/
...