Unless you want to give and manage different permission sets across all the site (which is a good solution to some site designs), you should also share the permissions table.
_____
From: support-bounces@drupal.org [mailto:support-bounces@drupal.org] On Behalf Of Anisa Sent: Tuesday, September 26, 2006 9:16 AM To: support@drupal.org Subject: [support] shared tables for multisite
OK. Let's say you only want to share users across a multisite installation. In a plain Drupal installation, are these the only tables you need to share? (copied from the single signon module)
* 'default' => 'somesitename_',
* 'authmap' => 'shared_', * 'profile_fields' => 'shared_', * 'profile_values' => 'shared_', * 'role' => 'shared_', * 'sequences' => 'shared_', * 'sessions' => 'shared_',
* 'users' => 'shared_', * 'users_roles' => 'shared_', * 'users_uid_seq' => 'shared_', // for pgsql Anisa.