paypal About error message error:14094410:SSL routines:SSL3_READ_BYTES:sslv3 alert handshake failure
This problem is mainly caused by an error caused by paypal changing the server address of the sandbox.
Modification method:
1. Modify the file includes/modules/payment/paypal/paypal_curl.php
var $_endpoints = array('live' => 'https://api-3t.paypal.com/nvp',
//'sandbox' => 'https://api.sandbox.paypal.com/nvp'); change to the following address
'sandbox' => 'https://api-3t.sandbox.paypal.com/nvp');
2. Modify the file includes/modules/payment/paypaldp.php
$doPayPal->_endpoints = array('live' => 'https://api-3t.paypal.com/nvp',
// 'sandbox' => 'https://api.sandbox.paypal.com/nvp'); change to the following address
'sandbox' => 'https://api-3t.sandbox.paypal.com/nvp');
3. Modify the file includes/modules/payment/paypalwpp.php
$doPayPal->_endpoints = array('live' => 'https://api-3t.paypal.com/nvp',
//'sandbox' => 'https://api.sandbox.paypal.com/nvp'); change to the following address
'sandbox' => 'https://api-3t.sandbox.paypal.com/nvp');
http://www.bkjia.com/PHPjc/477819.htmlwww.bkjia.comtruehttp: //www.bkjia.com/PHPjc/477819.htmlTechArticlepaypal About the error message error:14094410:SSL routines:SSL3_READ_BYTES:sslv3 alert handshake failure This problem is mainly due to paypal changes The error caused by the sandbox server address...