I get this error:
"Problem with the SSL CA cert (path? access rights?)"
When doing:
$curl = curl_init('https://example.com' . ($method == 'GET' && $params ? '?' . $params : ''));
curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, 0);
curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, 0);
$response = curl_exec($curl);
print curl_error($curl)
Works ok on another server.
The SSL is using NSS. PHP 5.3.6