Try the Demo

Magento Forum

   
Want to run SSL normally for checkout but basket empties and stays on http
 
ciara
Jr. Member
 
Total Posts:  6
Joined:  2008-08-07
 

Hello,

I have inherited a Magento site which I am slowly figuring out… It’s version 1.3.2.2. The previous developer advised that the whole thing run over https so I have convinced the client that this is not a good thing.

So now I am trying to make it run over https only in checkout area. Have searched through all of these forums but can’t get an answer to my problem. Basically, when I set the ‘Unsecure Base URL’ to http://… and the ‘Secure Base URL’ to https:// and clear the cache, the site does not respond. IE. It runs over http and does not move to https at checkout. Also drops any items out of the basket as soon as we checkout. The links are not hard-coded in site.

Please, please help! Driving me nuts. Happy to provide more info if needed.

Image Attachments
Screen Shot 2011-11-21 at 20.22.54.png
 
Magento Community Magento Community
Magento Community
Magento Community
 
ciara
Jr. Member
 
Total Posts:  6
Joined:  2008-08-07
 

bump?!

anyone out there?

 
Magento Community Magento Community
Magento Community
Magento Community
 
goivvy
Sr. Member
 
Avatar
Total Posts:  266
Joined:  2010-12-15
Москва, Россия
 

it moves to ssl when you press process to checkout (checkout/onepage):

echo $this->getUrl('checkout/onepage', array('_secure' =>true));

quick and dirty fix i did for whole checkout area (nginx.conf):

if ($request_uri ~* "^/checkout/cart/?$"{
            rewrite 
^(.*) https://$host$1 permanent;
        
}

 Signature 

goivvy.com, buy magento modules
- convert guests to registered customers Guest 2 Customer
- assign customer to an order Assign Customer
- call for price Call For Price

Affiliate with Us and earn money!

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