Hi I am using Paypal PHP SDK to communicate with Paypal Api.
2 days before every thing was working fine. But now I am getting this error on my development servers.
error:14094410:SSL routines:SSL3_READ_BYTES:sslv3 alert handshake failure
I am using the following CURL options while requesting:
public static $DEFAULT_CURL_OPTS = array(
CURLOPT_SSLVERSION => 1,
CURLOPT_CONNECTTIMEOUT => 10,
CURLOPT_RETURNTRANSFER => TRUE,
CURLOPT_TIMEOUT => 60, // maximum number of seconds to allow cURL functions to execute
CURLOPT_USERAGENT => 'PayPal-PHP-SDK',
CURLOPT_HTTPHEADER => array(),
CURLOPT_SSL_VERIFYHOST => 2,
CURLOPT_SSL_VERIFYPEER => 1,
CURLOPT_SSL_CIPHER_LIST => 'TLSv1',
);
This problem only occuring using SANDBOX mode on live mode every thing works fine.
Any body knows why this is happening?
Thank You