I'm trying to setup a Multisite using a single database and some shared tables with MySQL 5.
After reading a lot of documentation I've decided to try this for the first time and use the New Drupal 6.0 Release.
What I can't seem to figure out is how to create the tables properly.
I need to have more details on the process on creating multisites.
All the documentation on the website are skipping some parts which is
where I run into problems.
Under the "sites" directory I created 2 additional directories so I have:
(All)
Default
www.xxx2.com
www.xxx3.com
All 3 sites will have different content but will be using some shared tables for Login...ect.
So when starting from Scratch I've put the default.settings.php file in each of these directories and I've modified the code to:
For the default:
$db_url = 'mysql://xxx:xxx@xxx.xxx.xxx/xxx'; (with the proper database access info of course)
$db_prefix = array(
'default' => 'xx1_',
'users' => 'shared_',
'sessions' => 'shared_',
'role' => 'shared_',
'authmap' => 'shared_',
'sequences' => 'shared_',
);
For the www.xxx2.com
$db_url = 'mysql://xxx:xxx@xxx.xxx.xxx/xxx'; (with the proper database access info of course)
$db_prefix = array(
'default' => 'xx2_',
'users' => 'shared_',
'sessions' => 'shared_',