Page 1 of 1
Paypal order status not updated
Posted: 27 Mar 2020, 13:49
by Lucbe
Hi,
I installed Paypal standard on my PHOCACART shop
Payement works, however order status is not updated.
In the log I have the following messages :
Payment - PayPal Standard - ERROR (Listener Error)
https://XXX/index.php?option=com_phocac ... =component
Payment - PayPal Standard - ERROR
https://XXX/index.php?option=com_phocac ... =component
XXX is my url (correct)
I am lost, anybody can help ?
Re: Paypal order status not updated
Posted: 27 Mar 2020, 16:39
by Jan
Hi, the problems comes from this code:
plugins/pcp/paypal_standard/paypal_standard.php cca line 386
Code: Select all
try {
$listener->setParams($p);
$listener->requirePostMethod();
$verified = $listener->processIpn();
if (!$verified) {
PhocacartLog::add(1, 'Payment - PayPal Standard - ERROR', 0, $listener->getTextReport());
}
} catch (Exception $e) {
PhocacartLog::add(1, 'Payment - PayPal Standard - ERROR (Listener Error)', 0, $e->getMessage());
exit(0);
}
Try to see even your PHP errorLog on your server, if there is no more information.
Do you get more information in the log - is there some description?
Maybe there can be some limit on server when getting data from external server. But to know it, there needs to be more detailed error information
Jan
Re: Paypal order status not updated
Posted: 27 Mar 2020, 17:11
by Lucbe
I have this in _phocacart_logs
cURL error: [60] SSL certificate problem: unable to get local issuer certificate, User: Anonymous
cURL error: [60] SSL certificate problem: unable to get local issuer certificate, User: Anonymous
Re: Paypal order status not updated
Posted: 28 Mar 2020, 20:47
by Jan
Hi, try to disable the verification of SSL Certificate in Payment Options:
Jan
Re: Paypal order status not updated
Posted: 02 Apr 2020, 10:33
by Lucbe
Hi Jan,
Thanks, your solution works, PayPal working now
Re: Paypal order status not updated
Posted: 02 Apr 2020, 20:57
by Jan
Ok