Reputation: 3440
I have 13 sites in Joomla installed on one server. One main site + 12 other sites. Each site is a diffrent Joomla installation (based on the same template etc.)
Now I need to display news from Main Site in Other sites.
I'm thinking about:
Do you have any ideas? How to do this?
Upvotes: 0
Views: 866
Reputation: 1873
If all of the website databases in question are on the same server I would directly query the relevant tables instead of going through all the trouble and overhead of setting up 12 different RSS feeds. This is assuming there is no other business need to implement those feeds to the outside world.
Check out the below link on how to connect to external databases using Joomla's core database classes. Depending on how you structure, you could write one module with connection, table and query options that can be installed on all websites. This allows you to accomplish your goals for all websites while only having to maintain one modules code package.
http://docs.joomla.org/Connecting_to_an_external_database
Upvotes: 1