Hi - using EE v2.1.3 build 20101220 AND MSM Version: 2.0 Build: 20101215 and trying to pull content from one site into another using the following tag
{exp:channel:entries channel="blog" limit="15" site=""}
i have also tried
{exp:channel:entries channel="blog" limit="15" site="default_site"}
AND
{exp:channel:entries channel="blog" limit="15" site="not otherSite"}
In fact, only one of my sites has a “blog” channel, but that shouldn’t matter. Problem being, it doesn’t seem to pull content from the one site that has “blog” channel into any other sites as expected.
I checked and the mysql query still has the site ID of the site I am currently browsing. As Follows:
SELECT t.entry_id FROM exp_channel_titles AS t
LEFT JOIN exp_channels ON t.channel_id = exp_channels.channel_id LEFT JOIN exp_members AS m ON m.member_id = t.author_id WHERE t.entry_id !=’’ AND t.site_id IN (‘14’) AND t.entry_date < 1300231523 AND (t.expiration_date = 0 OR t.expiration_date > 1300231523) AND (t.channel_id = ‘205’ OR t.channel_id = ‘206’ ) AND t.status = ‘open’ ORDER BY t.sticky desc, t.entry_date desc, t.entry_id desc LIMIT 0, 15
Am I missing something?