
Originally Posted by
twi
actually I have just changed the files to:
<?php
$template_dir = "robbor_red_BEX";
define('SITE_NAME','robbor_red_BEX');
?>
and
<?php
$template_dir = "robbor_green_BAM";
define('SITE_NAME','robbor_green_BAM');
define('HTTP_SERVER', 'http://www.birthdayandmore.net');
?>
is it still working? or should I revert back? I did that is because I didn't see it working at my end.
Yes, it is still working over here :)
That is about the bare minimum you need to put in the config files
this is what I normally use for the main/first site
PHP Code:
<?php
$template_dir = "template1";
define('SITE_NAME','mysite');
define('HTTP_SERVER', 'http://mysite.nl');
// EOF
And this for the extra domains
PHP Code:
<?php
$template_dir = "template2";
define('SITE_NAME','myseccondsite');
define('HTTP_SERVER', 'http://myseccondsite.nl');
//EOF
That is the minimum, after you can add extra overrides