Howdy,
I've got two WP installs running happily in separate subdomains.
The homepage -- an independent, non-Wordpress page -- has successfully been displaying the plugin content from one of the blogs by including the wp-config.php file:
<?php require("/home/account/public_html/blog1/wp-config.php"); ?>
<?php recent_posts(); ?>
This was happy times until today, when I needed to pull content from the second Wordpress install into the homepage...
It would seem that WP functions aren't being loaded/included when the second file is called, and as a result, I'm seeing only content from blog1.
Thoughts on how to tackle this?