Hi all. I have been trying 5 hours to create multisite on a single installation of drupal but still can't do it. so I finally decided to drop a message here..
I have installed drupal 4.6.0 into http://cms.mydomain.com. I have no problem with this so far, I can go to that URL and create the first admin user.
Now, I'm trying to create another site which is completely separated. The URL for this site will be http://cms.mydomain.com/customer.
According to the INSTALL.txt, all I have to do is create a folder called "cms.mydomain.com.customer" under "sites" folder and then copy settings.php from "default" folder to "cms.mydomain.com.customer".
In settings.php I have;
$db_url = 'mysql://username:password@localhost/database';
$db_prefix = '';
$base_url = 'http://cms.mydomain.com';
But this does not seem to work as I get "page not found" error when I try to access http://cms.mydomain.com/customer.
I have noticed that a few people here are talking about symbolic link, but I have no idea how to use shell command plus there seems to be others saying there is no need to create symlink.... Some people even saying rename settings.php to (in this particular case) cms.mydomain.com.customer.php.... I'm getting really confused.
and, I want to create sites which all work completely independently, so in settings.php I have actually tried something like;
$db_prefix = 'customer1_';