Results 1 to 10 of 10

I can't get my ssl cerificates to load

This is a discussion on I can't get my ssl cerificates to load within the osCmax v2 Installation issues forums, part of the osCmax v2.0 Forums category; Hi... I have just started (bought already set up) two commerce sites...and can't get my ssl certificates loaded on them ...

      
  1. #1
    New Member
    Join Date
    Jan 2008
    Posts
    25
    Rep Power
    0


    Default I can't get my ssl cerificates to load

    Hi...
    I have just started (bought already set up) two commerce sites...and can't get my ssl certificates loaded on them nor am I able to switch the addresses from http to https.
    Any help would be greatly appreciated.....
    Angela

    CraftyTidbits.com
    Spoiled Petzz

  2. #2
    osCMax Developer

    michael_s's Avatar
    Join Date
    Jul 2002
    Location
    Phoenix, AZ
    Posts
    19,501
    Rep Power
    567


    Default Re: I can't get my ssl cerificates to load

    The certs load fine when I check https://www.craftytidbits.com/

    edit the configure.php files to point to the SSL url and SSL cookie path, and set Use SSL to true.
    Michael Sasek
    osCMax Developer


    osCmax installation service - Have our professionals install osCmax on your server - same day service!
    osCmax 2.0 User Manual - the must have beginners guide to osCmax v2.0

    Stay Up To Date with everything osCMax:
    Free osCMax Newsletters - Security notices, New Releases, osCMax News
    osCMax on Twitter - Up to the minute info as it happens. Know it first.

    osCmax Documentation

  3. #3
    New Member
    Join Date
    Jan 2008
    Posts
    25
    Rep Power
    0


    Default Re: I can't get my ssl cerificates to load

    Hi...I am sorry ...but I am very new to this....
    The following is what is in the config file....which/where do I change?
    Last edited by michael_s; 01-29-2008 at 06:49 PM. Reason: removed entire php file. We all have them. No need to post it.

  4. #4
    New Member
    Join Date
    Jan 2008
    Posts
    25
    Rep Power
    0


    Default Re: I can't get my ssl cerificates to load

    How come when I look at the https.CraftyTidbits.com the pics and such don't show? When I go to http.CraftyTidbits.com everything is fine....what did I do wrong?

    Thanks so much for your time,
    Angela

  5. #5
    New Member
    Join Date
    Jan 2008
    Posts
    25
    Rep Power
    0


    Default Re: I can't get my ssl cerificates to load

    Hi....
    yes the https comes up but all my pics and color choices do not show....what have I done wrong?

    Thanks for any help at all
    Angela

  6. #6
    osCMax Developer

    michael_s's Avatar
    Join Date
    Jul 2002
    Location
    Phoenix, AZ
    Posts
    19,501
    Rep Power
    567


    Default Re: I can't get my ssl cerificates to load

    Wrong file. I said configure.php not configuration.php... big difference.

    So, try again, this time looking in the configure.php file. There are obvious SSL settings.
    Michael Sasek
    osCMax Developer


    osCmax installation service - Have our professionals install osCmax on your server - same day service!
    osCmax 2.0 User Manual - the must have beginners guide to osCmax v2.0

    Stay Up To Date with everything osCMax:
    Free osCMax Newsletters - Security notices, New Releases, osCMax News
    osCMax on Twitter - Up to the minute info as it happens. Know it first.

    osCmax Documentation

  7. #7
    New Member
    Join Date
    Jan 2008
    Posts
    25
    Rep Power
    0


    Default Re: I can't get my ssl cerificates to load

    Great! That fixed my layout problem...but how do I get the http to go directly to https page? Like when someone just types in craftytidbits.com....how do I get it to go to https instead of directly to http?

    Thanks so much!
    Angela

  8. #8
    osCMax Developer

    michael_s's Avatar
    Join Date
    Jul 2002
    Location
    Phoenix, AZ
    Posts
    19,501
    Rep Power
    567


    Default Re: I can't get my ssl cerificates to load

    You don't. That is not correct SSL usage. It only switches to ssl when needed - during login, checkout.

    You did not edit the configure.php files correctly though, as it is incorrectly building the ssl url. Double check for errors.
    Michael Sasek
    osCMax Developer


    osCmax installation service - Have our professionals install osCmax on your server - same day service!
    osCmax 2.0 User Manual - the must have beginners guide to osCmax v2.0

    Stay Up To Date with everything osCMax:
    Free osCMax Newsletters - Security notices, New Releases, osCMax News
    osCMax on Twitter - Up to the minute info as it happens. Know it first.

    osCmax Documentation

  9. #9
    New Member
    Join Date
    Jan 2008
    Posts
    25
    Rep Power
    0


    Default Re: I can't get my ssl cerificates to load

    Hi..
    Sorry to keep bugging you...I can't see where I went wrong....here is what I have:
    <?php
    /*
    osCommerce, Open Source E-Commerce Solutions
    osCommerce, Open Source Online Shop E-Commerce Solutions
    Copyright (c) 2003 osCommerce
    Released under the GNU General Public License
    */
    // Define the webserver and path parameters
    // * DIR_FS_* = Filesystem directories (local/physical)
    // * DIR_WS_* = Webserver directories (virtual/URL)
    define('HTTP_SERVER', 'http://craftytidbits.com'); // eg, cPanel® - should not be empty for productive servers
    define('HTTPS_SERVER', 'https://craftytidbits.com'); // eg, https://localhost - should not be empty for productive servers
    define('ENABLE_SSL', true); // secure webserver for checkout procedure?
    define('HTTP_COOKIE_DOMAIN', 'craftytidbits.com');
    define('HTTPS_COOKIE_DOMAIN', 'craftytidbits.com');
    define('HTTP_COOKIE_PATH', '/');
    define('HTTPS_COOKIE_PATH', '/');
    define('DIR_WS_HTTP_CATALOG', '/');
    define('DIR_WS_HTTPS_CATALOG', '');
    define('DIR_WS_IMAGES', 'images/');
    define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/');
    define('DIR_WS_INCLUDES', 'includes/');
    define('DIR_WS_BOXES', DIR_WS_INCLUDES . 'boxes/');
    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', 'pub/');
    define('DIR_FS_CATALOG', '/home/content/c/r/a/craftytidbits/html/');
    define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/');
    define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/');

    where have I gone wrong?

    Thanks so much,
    Angela

  10. #10
    osCMax Developer

    michael_s's Avatar
    Join Date
    Jul 2002
    Location
    Phoenix, AZ
    Posts
    19,501
    Rep Power
    567


    Default Re: I can't get my ssl cerificates to load

    Here:

    PHP Code:
       define('DIR_WS_HTTPS_CATALOG'''); 
    Should be

    PHP Code:
       define('DIR_WS_HTTPS_CATALOG''/'); 
    also, your cookie domain should be:
    PHP Code:
     .craftytidbits.com 
    note the period preceding the domain name.
    Michael Sasek
    osCMax Developer


    osCmax installation service - Have our professionals install osCmax on your server - same day service!
    osCmax 2.0 User Manual - the must have beginners guide to osCmax v2.0

    Stay Up To Date with everything osCMax:
    Free osCMax Newsletters - Security notices, New Releases, osCMax News
    osCMax on Twitter - Up to the minute info as it happens. Know it first.

    osCmax Documentation

Similar Threads

  1. Admin SSL Woes “You are not protected by a secure SSL connection”
    By osc snob in forum osCmax v2 Installation issues
    Replies: 5
    Last Post: 01-26-2008, 12:05 PM
  2. flash.swf in header only want to load once?
    By badadz in forum osCmax v2 Customization/Mods
    Replies: 3
    Last Post: 10-18-2005, 12:09 AM
  3. Which PayPal IPN to load?
    By DerekJ in forum osCmax v1.7 Discussion
    Replies: 5
    Last Post: 04-04-2005, 03:32 AM
  4. One Page Will Not Load
    By annea03 in forum osCmax v1.7 Discussion
    Replies: 4
    Last Post: 09-23-2003, 11:19 AM

Bookmarks

Posting Permissions

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