Check this problem out. I have Turbo SSL on Godaddy Linux hosting account with the Apple Zen on the root.

Go to my site: www.kmsorganics.com

Hover over the My Account at the top( or click on them), all the links look like:

HTML Code:
https://www.kmsorganics.comhttps//www.kmsorganics.com/index.php?main_page=account


Also,
I cannot get to the admin login page. I get a "Cannot find server" page.

The site works perfectly if the SSL is not turned on on the configure.php.

If you type in https://www.kmsorganics.com the page in all messed up??

I spoke with GoDaddy support and they told me that the SSL is set up correctly and that there is a java script that is not allowing the https to show up?????


Any and all help would be much appreciated!

Thanks All.




configure (includes)
Code:
  define('HTTP_SERVER', 'http://www.kmsorganics.com');
  define('HTTPS_SERVER', 'https://www.kmsorganics.com');
  define('ENABLE_SSL', 'true');
  define('DIR_WS_CATALOG', '/');
  define('DIR_WS_HTTPS_CATALOG', 'https://www.kmsorganics.com/');
  define('DIR_WS_IMAGES', 'images/');
  define('DIR_WS_INCLUDES', 'includes/');
  define('DIR_WS_FUNCTIONS', DIR_WS_INCLUDES . 'functions/');
  define('DIR_WS_CLASSES', DIR_WS_INCLUDES . 'classes/');
  define('DIR_WS_MODULES', DIR_WS_INCLUDES . 'modules/');
  define('DIR_WS_LANGUAGES', DIR_WS_INCLUDES . 'languages/');
  define('DIR_WS_DOWNLOAD_PUBLIC', DIR_WS_CATALOG . 'pub/');
  define('DIR_WS_TEMPLATES', DIR_WS_INCLUDES . 'templates/');
  define('DIR_WS_PHPBB', '/');
  define('DIR_FS_CATALOG', '/home/content/D/a/w/MyContent/html/');
  define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/');
  define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/');
  define('DIR_WS_UPLOADS', DIR_WS_IMAGES . 'uploads/');
  define('DIR_FS_UPLOADS', DIR_FS_CATALOG . DIR_WS_UPLOADS);
  define('DIR_FS_EMAIL_TEMPLATES', DIR_FS_CATALOG . 'email/');
configure (admin)
Code:
  define('HTTP_SERVER', 'http://www.kmsorganics.com');
  define('HTTPS_SERVER', 'https://www.kmsorganics.com');
  define('HTTP_CATALOG_SERVER', 'http://www.kmsorganics.com');
  define('HTTPS_CATALOG_SERVER', 'https://www.kmsorganics.com');
  define('ENABLE_SSL_CATALOG', 'true');
  define('ENABLE_SSL_ADMIN', 'true');
  define('DIR_WS_ADMIN', '/admin/');
  define('DIR_WS_CATALOG', '/');
  define('DIR_WS_HTTPS_ADMIN', 'https://www.kmsorganics.com/admin/');
  define('DIR_WS_HTTPS_CATALOG', 'https://www.kmsorganics.com/');
  define('DIR_FS_ADMIN', '/home/content/D/a/w/MyContent/html/admin/');
  define('DIR_FS_CATALOG', '/home/content/D/a/w/MyContent/html/');