paypal 關於 錯誤提示 error:14094410:SSL routines:SSL3_READ_BYTES:sslv3 alert handshake failure 這個問題主要是由於paypal變更了sandbox的服務器地址導致的錯誤。 修改的方法: 1、修改文件 includes/modules/payment/paypal/paypal_curl.php var $_endpoints = array('live' => 'https://api-3t.paypal.com/nvp', //'sandbox' => 'https://api.sandbox.paypal.com/nvp');修改為下面這個地址 'sandbox' => 'https://api-3t.sandbox.paypal.com/nvp'); 2、修改文件 includes/modules/payment/paypaldp.php $doPayPal->_endpoints = array('live' => 'https://api-3t.paypal.com/nvp', // 'sandbox' => 'https://api.sandbox.paypal.com/nvp');修改為下面的地址 'sandbox' => 'https://api-3t.sandbox.paypal.com/nvp'); 3、修改文件 includes/modules/payment/paypalwpp.php $doPayPal->_endpoints = array('live' => 'https://api-3t.paypal.com/nvp', //'sandbox' => 'https://api.sandbox.paypal.com/nvp');修改為下面的地址 'sandbox' => 'https://api-3t.sandbox.paypal.com/nvp');