Results 1 to 5 of 5

Hybrid View

  1. #1

    Default Re: SSL configuration

    Thanks to both people who responded. You got me pointed in the right direction. For the benefit of people who might have a similar problem the resolution was this;

    When the cart opens a new page (or image or whatever) it uses the configure.php files to create the url by combining your HTTPS Server definition (i.e. HTTPS_SERVER as defined in line 17) with your catalog directory definition (i.e. DIR_WS_HTTPS_CATALOG as defined in line 26). My includes/configure.php file was as follows;

    Line 17 - define('HTTPS_SERVER', 'https://www.mywebsite.com');

    and

    Line 26 - define('DIR_WS_HTTPS_CATALOG', 'https://');

    I don't know why line 26 was like this. I'm pretty sure I never touched it before so I'm guessing that is the default.

    so when you concatenate the two definitions you get;

    https://www.mywebsite.comhttps://

    This is obviously an invalid url.

    I changed line 26 to;

    define('HTTPS_SERVER', '/mycatalogdirectory/');

    and everything worked fine.

    My thanks also to whomever commented the code in the admin/includes/configure.php file. The comments were really helpful to a non-programmer like me in figuring out what was happening.

  2. #2
    Join Date
    Feb 2009
    Posts
    26
    Plugin Contributions
    0

    Default Re: SSL configuration

    Thanks for the help. I figured it out.

 

 

Similar Threads

  1. SSL Configuration
    By baddco in forum Installing on a Windows Server
    Replies: 32
    Last Post: 19 Aug 2008, 04:56 PM
  2. SSL Configuration
    By crazycucumber in forum Installing on a Linux/Unix Server
    Replies: 4
    Last Post: 27 Sep 2006, 01:32 AM
  3. SSL Configuration
    By storiale in forum Basic Configuration
    Replies: 16
    Last Post: 19 Jul 2006, 06:36 AM

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