Results 1 to 7 of 7

Thread: SSL implementation

  1. #1
    Member dmm2020's Avatar
    Join Date
    Apr 2010
    Posts
    45
    Thanks
    0
    Thanked 93 Times in 18 Posts

    Default SSL implementation

    I can't find instructions on SSL implementation.

    I want to enable SSL and set links so that when customer info is taken, SSL is automatically enabled. What are the steps for that?

    I have an EV-SSL seal to display in the footer, basically floats over the footer with javascript. How do I do that with oscCart?

  2. The Following 4 Users Say Thank You to dmm2020 For This Useful Post:

    kescotekosek (14-08-2013),lrybuywejewe (02-10-2013),nbrregiordthor (27-11-2012),tasaraheache (26-11-2012)

  3. #2
    Developer Greystoke's Avatar
    Join Date
    Mar 2010
    Posts
    187
    Thanks
    2
    Thanked 499 Times in 113 Posts

    Default

    Hi,

    In your shop/includes/configure.php

    Change:

    Code:
      define('ENABLE_SSL', false);
    To:

    Code:
      define('ENABLE_SSL', true);

  4. The Following 4 Users Say Thank You to Greystoke For This Useful Post:

    kescotekosek (14-08-2013),lrybuywejewe (02-10-2013),nbrregiordthor (27-11-2012),tasaraheache (26-11-2012)

  5. #3
    Member dmm2020's Avatar
    Join Date
    Apr 2010
    Posts
    45
    Thanks
    0
    Thanked 93 Times in 18 Posts

    Default

    Then how/where do I place the javascript for the seal that floats on the footer? I want it to show if SSL enabled, so could use the script for that. I would like to see it floated on the cart footer not the vBulletin footer.

    Thanks in advance. It floats at bottom right of footer over everything else.

  6. The Following 4 Users Say Thank You to dmm2020 For This Useful Post:

    kescotekosek (14-08-2013),lrybuywejewe (02-10-2013),nbrregiordthor (27-11-2012),tasaraheache (26-11-2012)

  7. #4
    Member dmm2020's Avatar
    Join Date
    Apr 2010
    Posts
    45
    Thanks
    0
    Thanked 93 Times in 18 Posts

    Default

    Sorry if this gets double posted, but when I went back to check, my other question was not there.

    I got a SSL seal to display over the right corner of the footer, and I would prefer it display over the cart footer rather than vBulletin's footer. It uses javascript to generate the image dynamically and float it.

    Where do I place the javascript and how do I wrap it so that it displays only on SSL enabled pages?

  8. The Following 4 Users Say Thank You to dmm2020 For This Useful Post:

    kescotekosek (14-08-2013),lrybuywejewe (02-10-2013),nbrregiordthor (27-11-2012),tasaraheache (26-11-2012)

  9. #5
    Developer Greystoke's Avatar
    Join Date
    Mar 2010
    Posts
    187
    Thanks
    2
    Thanked 499 Times in 113 Posts

    Default

    Hi,

    If you add it to the shop/includes/footer.php, it should show up in the shop footer.

    For the code to only show on SSL pages, you will need to do something like this:

    Code:
     
    <?php
    if ($request_type == 'SSL') {
     
    # Your Code here
     
    }
    ?>

  10. The Following 4 Users Say Thank You to Greystoke For This Useful Post:

    kescotekosek (14-08-2013),lrybuywejewe (02-10-2013),nbrregiordthor (27-11-2012),tasaraheache (26-11-2012)

  11. #6
    Member dmm2020's Avatar
    Join Date
    Apr 2010
    Posts
    45
    Thanks
    0
    Thanked 93 Times in 18 Posts

    Default

    Quote Originally Posted by Greystoke View Post
    Hi,

    If you add it to the shop/includes/footer.php, it should show up in the shop footer.

    For the code to only show on SSL pages, you will need to do something like this:

    Code:
     
    <?php
    if ($request_type == 'SSL') {
     
    # Your Code here
     
    }
    ?>
    OK thanks on this, but something else,

    My SSL is only for my main domain, so I have to run ssl like this:

    https://dmsoft-wy.com/dmsinteractiveweb/

    How do I edit the paths in the config file to account for this?

  12. The Following 4 Users Say Thank You to dmm2020 For This Useful Post:

    kescotekosek (14-08-2013),lrybuywejewe (02-10-2013),nbrregiordthor (27-11-2012),tasaraheache (26-11-2012)

  13. #7
    Developer Greystoke's Avatar
    Join Date
    Mar 2010
    Posts
    187
    Thanks
    2
    Thanked 499 Times in 113 Posts

    Default

    PM sent for more detailed info.

  14. The Following 4 Users Say Thank You to Greystoke For This Useful Post:

    kescotekosek (14-08-2013),lrybuywejewe (02-10-2013),nbrregiordthor (27-11-2012),tasaraheache (26-11-2012)

Posting Permissions

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