
Originally Posted by
PearceStephens
Hi Guys,
I have run a fresh install of zencart 1.5.1 just for test purposes, I have followed the installation instructions of MultiSite no problems.
However, whenever I go to the domain I get the error "the domain
www.pearcestephens.co.nz does not exist".
I have tried a couple of times on fresh installations and get the same error, what is the common problem for this?
PS. This is using the 1.5.1 beta
I cracked it, for anybody with the same problem. Simply create the config file for all shopping carts. My file structure looks like this
PHP Code:
<?php
$template_dir = "site1";
define('SITE_NAME','site1');
define('HTTP_SERVER', 'http://www.pearcestephens.co.nz');
define('HTTPS_SERVER', 'https://pearcestephens.co.nz');
define('CATEGORIES_ROOT','1'); //root categories is 1 for this site
?>
PHP Code:
<?php
define('DIR_WS_CATALOG', '/');
define('DIR_WS_HTTPS_CATALOG', '/');
$template_dir = "site1";
define('SITE_NAME','site1');
?>
PHP Code:
<?php
define('DIR_WS_CATALOG', '/');
define('DIR_WS_HTTPS_CATALOG', '/');
$template_dir = "site2";
define('SITE_NAME','site2');
?>
Bookmarks