I installed SSL last night, and then enabled a mod_rewrite today to make my site automatically load up https, but now Zen won't let me log in. I found this article and attempted to make the necessary changes in the code, but the portion of the code that should be there, isn't there. Can someone help me with this? Here's what the code (and surrounding code) looks like, notice it's missing the "define('ENABLE_SSL', 'true');"

// 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://store.capitalpyro.com');
define('HTTPS_SERVER', 'https://store.capitalpyro.com');

// Use secure webserver for checkout procedure?
define('ENABLE_SSL', '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_CATALOG', '/');
define('DIR_WS_HTTPS_CATALOG', '/');