Hello everyone!
I have successfully set up drupal 6.17 multisite with single sign on module 6.x-1.0-rc1 by sharing tables in a separate database:
authmap profile_fields profile_values role sessions users
made possible by following settings.php add-ins:
<?php
$db_url = 'mysqli://user:password@localhost/drupal_site1';
$db_prefix = array(
'default' => '',
'authmap' => 'drupal_shared_tables.',
'profile_fields' => 'drupal_shared_tables.',
'profile_values' => 'drupal_shared_tables.',
'role' => 'drupal_shared_tables.',
'sessions' => 'drupal_shared_tables.',
'users' => 'drupal_shared_tables.',
);
?>
So, here's the tricky part on what this is really about:
The primary links should be the same on all sites (like an index), but NOT the secondary ones nor the navigation. They should be configured seperately for every site. Only the Primary Links should be shared
I expect there to be a way through altering the settings.php like above and sharing parts of tables, but I am not shure how to share parts of tables, if this might be the right aim to go for.
So thank you all for the great help on other topics i could find .. sometimes things get so specific that I open a new discussion ;-) Thanks in advance for all answers or possibilities and help in advance ;-)
Alec