Thank YouSecurity 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?
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?
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.
using v1.5.1.3
I'm getting the same warning using Paypal Standard, when a customer chooses to use a credit/debit card instead of a Paypal account.
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.although this page is encrypted the information you have entered is to be sent over an unencrypted connection
using v1.5.1.3
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.
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:
Change them to:
It works like a charm now!
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');
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 changejimmydelangel 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:
Change them to:Code: Select all
$this->data['return'] = $this->url->link('checkout/success'); $this->data['notify_url'] = $this->url->link('payment/pp_standard/callback');
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!
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');
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');
Who is online
Users browsing this forum: No registered users and 15 guests