paypal error:14094410:SSL routines:SSL3_READ_BYTES:sslv3 ale_PHP教程

WBOY
Release: 2016-07-14 10:07:56
Original
1961 people have browsed it

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');

www.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...
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!