I'm having a bit of a tough time installing this
module onto my site.
I'm working with an existing zen cart installation that has been
customized quite a bit.
I followed the instructions for adding new files and hand-coding the files that already exist.
The primary site is livingcolorgardencenter.net and the second
site is a subdomain blackoliveeastnursery.net.

When I try to access my online store at livingcolorgardencenter.net/zencart_living_color/
all I get is a blank page.

I'm not sure if it is because the zencart store is in the folder "zencart_living_color"
instead of the root folder.

My config files are named livingcolorgardencenter.net_config.php and blackoliveeastnursery.net_config.php

Their contents are as follows:

PHP Code:
<?php
$template_dir 
"living_color";
define('SITE_NAME','Livng Color Garden Center');
define('HTTP_SERVER''http://www.livingcolorgardencenter.net');
define('HTTPS_SERVER''https://livingcolorgardencenter.net');
define('CATEGORIES_ROOT','1'); //root categories is 1 for this site  
?>

PHP Code:
<?php
$template_dir 
"black_olive";
define('SITE_NAME','Black Olive East Nursery');
define('HTTP_SERVER''http://www.blackoliveeastnursery.net');
define('HTTPS_SERVER''https://blackoliveeastnursery.net');
define('CATEGORIES_ROOT','1'); //root categories is 1 for this site  
?>
I have seen some posts about "pointing" the named servers to the right domain which I am having trouble understanding.

I hope I have provided enough information.

Any advice would be really appreciated.

Bill