I have searched the forums and tutorials and can't seem to find a solution. After getting a private SSL and making sure it worked I edited the 2 configure.php files in includes and admin/includes. Immediately afterwards I received a blank page and i KNOW I have edited the files correctly, making sure I left the ' where they belong. I then went back and changed it bacl to "false" on both configure.php files. My website is www.maxpsi.com

below is the 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.maxpsi.com');
  define('HTTPS_SERVER', 'https://www.maxpsi.com');

  // Use secure webserver for checkout procedure?
  define('ENABLE_SSL', 'false');
below is the admin/includes/configure.php
Code:
   * URLs for your site will be built via:  
   *     HTTP_SERVER plus DIR_WS_ADMIN or
   *     HTTPS_SERVER plus DIR_WS_HTTPS_ADMIN or 
   *     HTTP_SERVER plus DIR_WS_CATALOG or 
   *     HTTPS_SERVER plus DIR_WS_HTTPS_CATALOG
   * ...depending on your system configuration settings
   *
   * If you desire your *entire* admin to be SSL-protected, make sure you use a "https:" URL for all 4 of the following:
   */
  define('HTTP_SERVER', 'http://www.maxpsi.com');
  define('HTTPS_SERVER', 'https://www.maxpsi.com');
  define('HTTP_CATALOG_SERVER', 'http://www.maxpsi.com');
  define('HTTPS_CATALOG_SERVER', 'https://www.maxpsi.com');

  // Use secure webserver for catalog module and/or admin areas?
  define('ENABLE_SSL_CATALOG', 'false');
  define('ENABLE_SSL_ADMIN', 'false');

help