Quote Originally Posted by twi View Post
ZC1.5.1
Multisite v1.0

Can Anyone tell me what is wrong with my config_sites.php files? I get only the header of my site and template, but nothing that appears below the header. My sites are: www.birthdaysextreme.net and www.birthdayandmore.net

also, when no using the "www." in the browser will yield: "the domain birthdayandmore.net does not exist."

Please see below:

site: www.birthdaysextrme.net


<?php
define('DIR_WS_CATALOG', '/');
define('DIR_WS_HTTPS_CATALOG', '/');
$template_dir = "robbor_red_BEX";
define('SITE_NAME','robbor_red_BEX');
?>



site: www.birthdayandmore.net

<?php
define('DIR_WS_CATALOG', '/');
define('DIR_WS_HTTPS_CATALOG', '/');
$template_dir = "robbor_green_BAM";
define('SITE_NAME','robbor_green_BAM');
?>
I am assuming your original site is http://www.birthdayandmore.net/
since that is the one that is working, and probably is already defined throughthe normal config files.

try this for the second site
PHP Code:
<?php
$template_dir 
"robbor_red_BEX";
define('SITE_NAME','robbor_red_BEX');
define('HTTP_SERVER''http://www.birthdaysextrme.net');
?>
that should be enough

define('DIR_WS_CATALOG', '/');
define('DIR_WS_HTTPS_CATALOG', '/');

can left from both files since it is alredy defined in the original config.php , and is not different in the new site

Normally on a good configured server if you go to a www address it should be configured to go automatically to the non www address, or the other way around, what ever has your preference.
If it doesn't you can use your .htaccess file the establish this.