Post by Harshana85 » Fri Jun 24, 2011 12:44 am

when a client of my web site doing a payment they get the following error message. I have now installe SSL and active it on admin panel. Does following error message occures becasue ealier i didnt have active SSL or is there a another reason?
Security Warning
Although this page is encrypted, the information you have entered is to be sent over an unencrypted connection and could be easily read by third party.
Are you sure you want to continue sending this information?
Thank You

Newbie

Posts

Joined
Wed Jun 15, 2011 4:33 pm

Post by Hagrid » Sat Nov 12, 2011 5:42 am

Did anyone provide an answer to this?

I'm getting the same warning using Paypal Standard, when a customer chooses to use a credit/debit card instead of a Paypal account.
although this page is encrypted the information you have entered is to be sent over an unencrypted connection
The transaction goes through fine, but the warning pops up just as they are about to be transferred back to the website. I have SSL and all seems to be working fine otherwise. No similar warning if they choose to use a Paypal account.

using v1.5.1.3

Newbie

Posts

Joined
Sun Apr 03, 2011 5:14 am

Post by aledmann » Wed Nov 16, 2011 5:59 pm

My issue is the same as Hagrid's! Can anyone help? Thank you! :)

User avatar
New member

Posts

Joined
Thu Sep 08, 2011 9:56 pm

Post by aledmann » Tue Nov 22, 2011 6:50 pm

Has anyone found a solution to this or know why it's happening?

User avatar
New member

Posts

Joined
Thu Sep 08, 2011 9:56 pm

Post by aledmann » Sat Dec 03, 2011 9:19 pm

Come on you OC gurus! Where are you?? ;D

User avatar
New member

Posts

Joined
Thu Sep 08, 2011 9:56 pm

Post by labeshops » Sat Dec 03, 2011 9:29 pm

Check your return link in paypal. Make sure you are using https:// and not http:// Only thing I can think of

Running Opencart v3.0.3.9 with multi-stores and the default template from https://www.labeshops.com which has links to all my stores.


User avatar
Expert Member

Posts

Joined
Thu Aug 04, 2011 4:41 am
Location - Florida, USA

Post by gptmaster » Sun Dec 04, 2011 12:19 am

This sounds like a ssl problem you need a ssl Certificate to accept any type of credit card

Buy from godaddy or somewhere this should help :)

Good luck

Newbie

Posts

Joined
Sat Dec 03, 2011 10:02 am

Post by jimmydelangel » Fri Dec 16, 2011 11:47 am

OpenCart Version 1.5.1.3

The original post mentions having an SSL certificate already installed. I had the same problem even though my SSL cert has been installed and working as supposed. It turned out to be the "SSL" parameter not being included when setting the return url at the pp_standard.php controller (find it at [your shop home]/catalog/controller/payment/pp_standard.php), lines 110 and 111. They are originally:

Code: Select all

			$this->data['return'] = $this->url->link('checkout/success');
			$this->data['notify_url'] = $this->url->link('payment/pp_standard/callback');
Change them to:

Code: Select all

			$this->data['return'] = $this->url->link('checkout/success', '', 'SSL');
			$this->data['notify_url'] = $this->url->link('payment/pp_standard/callback', '', 'SSL');


It works like a charm now!

User avatar
Newbie

Posts

Joined
Fri Dec 16, 2011 11:40 am

Post by MeNAce » Fri Mar 01, 2013 11:49 am

jimmydelangel wrote:OpenCart Version 1.5.1.3

The original post mentions having an SSL certificate already installed. I had the same problem even though my SSL cert has been installed and working as supposed. It turned out to be the "SSL" parameter not being included when setting the return url at the pp_standard.php controller (find it at [your shop home]/catalog/controller/payment/pp_standard.php), lines 110 and 111. They are originally:

Code: Select all

			$this->data['return'] = $this->url->link('checkout/success');
			$this->data['notify_url'] = $this->url->link('payment/pp_standard/callback');
Change them to:

Code: Select all

			$this->data['return'] = $this->url->link('checkout/success', '', 'SSL');
			$this->data['notify_url'] = $this->url->link('payment/pp_standard/callback', '', 'SSL');


It works like a charm now!
Thanks Jim this worked, but for me (OpenCart Version 1.5.5.1) it was lines 84 and only the return I had to change

Oringinal

Code: Select all

84     $this->data['return'] = $this->url->link('checkout/success');
85     $this->data['notify_url'] = $this->url->link('payment/pp_standard/callback', '', 'SSL');
86     $this->data['cancel_return'] = $this->url->link('checkout/checkout', '', 'SSL');
Changed to

Code: Select all

84     $this->data['return'] = $this->url->link('checkout/success', '', 'SSL');
85     $this->data['notify_url'] = $this->url->link('payment/pp_standard/callback', '', 'SSL');
86     $this->data['cancel_return'] = $this->url->link('checkout/checkout', '', 'SSL');

Newbie

Posts

Joined
Fri Mar 01, 2013 11:34 am

Post by feisar » Wed May 29, 2013 12:13 am

Thanks guys I had to do this for 1.5.5.1 too.

Does anyone know if this has this been reported as a bug?

Newbie

Posts

Joined
Mon Sep 05, 2011 6:19 pm
Who is online

Users browsing this forum: No registered users and 15 guests