zencart/admin/includes/configure.php(not actual admin name due to security reasons)
Code:
/**
 * WE RECOMMEND THAT YOU USE SSL PROTECTION FOR YOUR ENTIRE ADMIN:
 * To do that, make sure you use a "https:" URL for BOTH the HTTP_SERVER and HTTPS_SERVER entries:
 */
  define('HTTP_SERVER', 'http://www.theeroticshop.net');
  define('HTTPS_SERVER', 'https://www.theeroticshop.net');
  define('HTTP_CATALOG_SERVER', 'http://www.theeroticshop.net');
  define('HTTPS_CATALOG_SERVER', 'https://www.theeroticshop.net');

  // secure webserver for admin?  Valid choices are 'true' or 'false' (including quotes).
  define('ENABLE_SSL_ADMIN', 'true');

  // secure webserver for storefront?  Valid choices are 'true' or 'false' (including quotes).
  define('ENABLE_SSL_CATALOG', 'true');
zencart/includes/configure.php
Code:
// Define the webserver and path parameters
  // HTTP_SERVER is your Main webserver: eg-http://www.your_domain.com
  // HTTPS_SERVER is your Secure webserver: eg-https://www.your_domain.com
  define('HTTP_SERVER', 'http://www.theeroticshop.net');
  define('HTTPS_SERVER', 'https://www.theeroticshop.net');

  // Use secure webserver for checkout procedure?
  define('ENABLE_SSL', 'true');
did I miss something??