1
I plan to install multiple, related XOOPS sites into a single DB. I'd like to be able to share certain tables (for Agenda-X and the Links module) to make the data available to all the sites. Here are the options I've considered:
- Removing the database prefix from all the code would work, but is a lot of effort and and would have to be re-done with every new release.
- Views. MySQL doesn't (yet) support views.
- The MySQL replication seems like overkill, but I never tried it.
- Writing a cron script to sync the seems like my best option, but I was wondering if anyone else has any ideas.
Dennis