Hello,
Please note, that payment protocol for Paypal payment gate away will change in 2016, the 17th June.
And for now new protocol is functional on Sandbox mode.
Unfortunately right now I can process some test, but I think I have the solution to update your paypal plugin.
In order to try to update it, follow this steps :
- Via an ftp program, go to website root directory
- Then open directory : plugins => hikashoppayment => paypal.php
- Look for this part :
if(!isset($url)) {
if(!empty($url) && in_array($url, array('https', 'ssl'))) {
$url = 443;
} else {
$url = 80;
}
}
if(!empty($url) && in_array($url, array('https', 'ssl'))) {
$url = 'ssl://' . $url;
} else {
$url = $url;
}
Have a look on "ssl" and "tls", and so you must have :
if(!isset($url)) {
if(!empty($url) && in_array($url, array('https', 'ssl', 'tls'))) {
$url = 443;
} else {
$url = 80;
}
}
if(!empty($url) && in_array($url, array('https', 'ssl', 'tls'))) {
$url = 'tls://' . $url;
} else {
$url = $url;
}
Awaiting news from you and hope that will solve your sandbox issue.
Keep in touch, best regards.