Results 1 to 8 of 8
  1. #1
    Join Date
    Jul 2007
    Posts
    32
    Plugin Contributions
    0

    help question SSL, Godaddy, Apple Zen URL problem???

    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/');

  2. #2
    Join Date
    Jan 2004
    Location
    N of San Antonio TX
    Posts
    9,691
    Plugin Contributions
    11

    Default Re: SSL, Godaddy, Apple Zen URL problem???

    The question that should be asked of your host is, do they set up their boxes to have https and http run from one directory.

    I note your setup as html and wonder if there is an shtml directory that may need to be populated as well.
    A little help with colors.
    myZenCartHost.com - Zen Cart Certified, PCI Compatible Hosting by JEANDRET
    Free SSL & Domain with semi-annual and longer hosting. Updating 1.5.2 and Up.

  3. #3
    Join Date
    Jan 2004
    Location
    N of San Antonio TX
    Posts
    9,691
    Plugin Contributions
    11

    Default Re: SSL, Godaddy, Apple Zen URL problem???

    Just took a closer look at the cannot find server

    Firefox can't find the server at www.kmsorganics.comhttps.
    Don't know where that link came from
    A little help with colors.
    myZenCartHost.com - Zen Cart Certified, PCI Compatible Hosting by JEANDRET
    Free SSL & Domain with semi-annual and longer hosting. Updating 1.5.2 and Up.

  4. #4
    Join Date
    Jul 2007
    Posts
    32
    Plugin Contributions
    0

    Default Re: SSL, Godaddy, Apple Zen URL problem???

    They told me that there is only one directory.

    I just got off the phone with them again. They said that I was missing the .htaccess on the root folder ????? that would redirect the site to the https. Also he 'viewed' source on the main page and said that all the http thould be changed to https ??????

    I tried to put in a .htaccess and got server errors. I was just guessing what to put in the file. Any ideas?

    Im stumped.

  5. #5
    Join Date
    Jul 2007
    Posts
    32
    Plugin Contributions
    0

    Default Re: SSL, Godaddy, Apple Zen URL problem???

    In the includes/configure, if SSL enabled is TRUE the double URL issue you saw happens for anything under My Account. When it is FALSE everything works fine.

  6. #6
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: SSL, Godaddy, Apple Zen URL problem???

    This is set wrong:
    define('DIR_WS_HTTPS_CATALOG', 'https://www.kmsorganics.com/');

    If in your root this should read:
    define('DIR_WS_HTTPS_CATALOG', '/');

    These are wrong:
    define('DIR_WS_HTTPS_ADMIN', 'https://www.kmsorganics.com/admin/');
    define('DIR_WS_HTTPS_CATALOG', 'https://www.kmsorganics.com/');

    And should be:
    define('DIR_WS_HTTPS_ADMIN', '/admin/');
    define('DIR_WS_HTTPS_CATALOG', '/');
    Linda McGrath
    If you have to think ... you haven't been zenned ...

    Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!

    Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today!]
    Officially PayPal-Certified! Just click here

    Try our Zen Cart Recommended Services - Hosting, Payment and more ...
    Signup for our Announcements Forums to stay up to date on important changes and updates!

  7. #7
    Join Date
    Jul 2007
    Posts
    32
    Plugin Contributions
    0

    Default Re: SSL, Godaddy, Apple Zen URL problem???



    Thanks! I cannot believe that I did not see thoes errors. Everythin works great now! Thanks again.

  8. #8
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: SSL, Godaddy, Apple Zen URL problem???

    Glad that all is right in the world once more ...
    Linda McGrath
    If you have to think ... you haven't been zenned ...

    Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!

    Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today!]
    Officially PayPal-Certified! Just click here

    Try our Zen Cart Recommended Services - Hosting, Payment and more ...
    Signup for our Announcements Forums to stay up to date on important changes and updates!

 

 

Similar Threads

  1. return URL (shared SSL) takes to URL that is not SSL?
    By Thannaree in forum PayPal Express Checkout support
    Replies: 0
    Last Post: 27 Jan 2011, 04:18 AM
  2. Need help with css problem -Apple Zen
    By Madiha in forum Addon Templates
    Replies: 0
    Last Post: 17 Feb 2010, 05:57 PM
  3. Problem with SSL on GoDaddy
    By iSPOTLLC in forum Installing on a Linux/Unix Server
    Replies: 1
    Last Post: 2 Jan 2010, 08:29 PM
  4. Problem with Apple Zen or Image Handler... not sure...
    By GoNinja in forum Addon Templates
    Replies: 3
    Last Post: 4 Mar 2009, 11:15 AM
  5. apple zen templates changing problem
    By sumri in forum Templates, Stylesheets, Page Layout
    Replies: 9
    Last Post: 25 Mar 2008, 01:44 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg