For those who have been following my recent posts and those who will be reading this into the future i have needed to achieve the following and as of today I have.
I had one portal (SiteA) on domain sitea.com for the purpose of this write up.
SiteA has many different taxonomy terms such as "taxonomy/term/27" which is linked to forums, stories etc relating to Product1 which has its own website (SiteB) at product1.com
SiteA also has the same setup , with taxonomies for ProductB ProductC etc.
No my dilema was having all the content on SiteA but only product Specific Info on the Product Sites.
A requirement was also single login.....
So after many late nights, playing with rss feeds, FOAF.module and seperate databases etc I have come back to the following..........
Drupal has a wonderful multisite function, where you can use a single database and database prefixing which I have done....I have setup the following prefixing in my settings.php for SiteB(The first product Site)
$db_prefix = 'prod1_'
$db_prefix = array(
'default' => '',
'users' => '',
'sessions' => '',
'role' => 'prod1_',
'authmap' => '',
'sequences' => '',
'menu' => 'prod1_',
'node_access' => 'prod1_',
'access' => 'prod1_',
'accesslog' => 'prod1_',
'term_access_defaults' => 'prod1_',
'term_access' => 'prod1_',