Try the Demo

Magento Forum

   
Configure SSL for a custom checkout? 
 
Philster53142
Member
 
Total Posts:  67
Joined:  2009-10-03
 

Please forgive me for what may be a stupid question but....

I added the famous “one step checkout” extension to my site and put it inside my actual shopping cart. So it’s now truly one step, no more “proceed to checkout”. Which is cool but how do I change when https:// ... kicks in?

In a standard Magento install it’s… https://mydomain.com/checkout/onepage/

After installing onestep checkout it would be....... https://mydomain.com/onestepcheckout

After putting onestep checkout in my actual cart it needs to be......  https://mydomain.com/checkout/cart

sorry if this is a dumb question. I have never set up an SSL before.

 
Magento Community Magento Community
Magento Community
Magento Community
 
Philster53142
Member
 
Total Posts:  67
Joined:  2009-10-03
 

Solved

/ app /code/core/Mage/Checkout/etc/config.xml

find:
<frontend>
<secure_url>

and put just:
<checkout_cart>/checkout/cart</checkout_cart>

Then you will have:
<frontend>
<secure_url>
<checkout_cart>/checkout/cart</checkout_cart>
<checkout_onepage>/checkout/onepage</checkout_onepage>
<checkout_multishipping>/checkout/multishipping</checkout_multishipping>
</secure_url>

 
Magento Community Magento Community
Magento Community
Magento Community
 
easyteach
Jr. Member
 
Total Posts:  28
Joined:  2009-12-17
 

This didn’t work for me with 1.6

I also tried making this module found here-- http://magento.dijksterhuis.org/securing-the-magento-shopping-cart-with-https/

, again didn’t work

It just seems that I need all of the links that carry me to the cart to direct to https://

I can do it with my main shopping cart button.

But it’s more difficult to do for My Cart in the top links. 
/app/code/core/Mage/Checkout/Block/Links.php

I’m sure there are a lot of people who want only their cart to be secure on the front end, but not the entire front end of the site.

Anyone willing to write an extension that works for this.

 
Magento Community Magento Community
Magento Community
Magento Community
Magento Community
Magento Community
    Back to top