Possible Duplicate:
Protocol https not supported or disabled in libcurl
I am trying to connect to a site via https using curl within php.
<?php
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://api-3t.paypal.com/nvp');
$response = curl_exec($ch);
curl_close($ch);
?>
curl reuturns with
* Protocol https not supported or disabled in libcurl
however using curl via command line works fine
# curl https://api-3t.paypal.com/nvp
I am running CentOS 5.8, WHM 11.32.2
# curl-config --features
SSL
IPv6
libz
IDN
NTLM
# curl-config --protocols
HTTP
HTTPS
FTP
FTPS
FILE
TELNET
LDAP
DICT
TFTP
NTLM