Well, happy news! I can see my shop now!
As I mentioned earlier, I had first done a fresh install of ZC with no addons and such. It went fine. The problems began when I downloaded my ZC install from the internet and tried to view that.
It came to me that since I was able to see the fresh install, this must be possible! I opened the shop/admin/config file from the fresh install I had before and the one from the internet-downloaded version I was having the trouble with in Crimson Editor and compared them back and forth.
I changed the following and now it works! Yea, I can see the catalog on my computer and also from computers on my home network.
--------------------------------------------------------
C:\wamp\www\shop\includes\configure.php
--------------------------------------------------------
Changed this...
define('HTTP_SERVER', 'http://192.168.1.106');
define('HTTPS_SERVER', 'http://localhost');
to this...
define('HTTP_SERVER', 'http://192.168.1.106');
define('HTTPS_SERVER', 'http://192.168.1.106');
and this...
define('DIR_FS_SQL_CACHE', '/C:/wamp/www/shop/cache');
to this...
define('DIR_FS_SQL_CACHE', 'C:/wamp/www/shop/cache');
Just removed the beginning / mark. And, basically changed the same things in
--------------------------------------------------------
C:\wamp\www\shop\admin\includes\configure.php
--------------------------------------------------------
Changed this...
define('HTTP_SERVER', 'http://192.168.1.106');
define('HTTPS_SERVER', 'https://localhost');
define('HTTP_CATALOG_SERVER', 'http://192.168.1.106');
define('HTTPS_CATALOG_SERVER', 'https://localhost');
to this...
define('HTTP_SERVER', 'http://192.168.1.106');
define('HTTPS_SERVER', 'https://192.168.1.106');
define('HTTP_CATALOG_SERVER', 'http://192.168.1.106');
define('HTTPS_CATALOG_SERVER', 'https://192.168.1.106');
and this...
define('DIR_FS_SQL_CACHE', '/C:/wamp/www/shop/cache');
to this...
define('DIR_FS_SQL_CACHE', 'C:/wamp/www/shop/cache');
Removed the beginning / mark.
Thanks for all your help!!! And thanks to my husband for suggesting somehow going backwards to fix the problem. That's what gave me the idea!
Hope this helps someone else,
Rebekah



