Hi, My call to Google OpenID authentication errors out, with the following error
CURL error (60): SSL certificate problem, verify that the CA cert is OK. Details: error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed


Note that this works from my local host, though no CURL module is installed on my PHP. However CURL is installed on my server.

The error happens irrespective of whether I add code to call to
Code:
$ch = curl_init();
curl_setopt($ch,CURLOPT_SSL_VERIFYPEER, false);
$output = curl_exec($ch);
Can some one help