Kobra,
I see what you were talking about. It looks as though I had a copy and paste error in my post. Let me try that again:
Here is the catalog/includes/configure.php code:
define('HTTP_SERVER', 'http://tsilaorganics.com');
define('HTTPS_SERVER', 'https://tsilaorganics.com');
// Use secure webserver for checkout procedure?
define('ENABLE_SSL', 'true');
// NOTE: be sure to leave the trailing '/' at the end of these lines if you make changes!
// * DIR_WS_* = Webserver directories (virtual/URL)
// these paths are relative to top of your webspace ... (ie: under the public_html or httpdocs folder)
define('DIR_WS_CATALOG', '/catalog/');
define('DIR_WS_HTTPS_CATALOG', '/catalog/');
and here is the catalog/admin/includes/configure.php code:
define('HTTP_SERVER', 'http://tsilaorganics.com');
define('HTTPS_SERVER', 'https://tsilaorganics.com');
define('HTTP_CATALOG_SERVER', 'http://tsilaorganics.com');
define('HTTPS_CATALOG_SERVER', 'https://tsilaorganics.com');
// secure webserver for catalog module and/or admin areas?
define('ENABLE_SSL_CATALOG', 'true');
define('ENABLE_SSL_ADMIN', 'false');
// NOTE: be sure to leave the trailing '/' at the end of these lines if you make changes!
// * DIR_WS_* = Webserver directories (virtual/URL)
// these paths are relative to top of your webspace ... (ie: under the public_html or httpdocs folder)
define('DIR_WS_ADMIN', '/catalog/admin/');
define('DIR_WS_CATALOG', '/catalog/');
define('DIR_WS_HTTPS_ADMIN', '/catalog/admin/');
define('DIR_WS_HTTPS_CATALOG', '/catalog/');