Hi.
I'm trying to use cURL to connect a HTTPS server, but it returns me "Your connection is using a weak random seed! * Closing live connection (#0) "
Can you help me out with this?
My code is like this:
$ch=curl_init();
curl_setopt($ch,CURLOPT_VERBOSE,1);
curl_setopt($ch,CURLOPT_URL,$url);
curl_setopt($ch,CURLOPT_POST,1);
curl_setopt($ch,CURLOPT_POSTFIELDS,$params);
curl_setopt($ch,CURLOPT_SSLCERT,"multicert.p12");
curl_setopt($ch,CURLOPT_SSLCERTPASSWD,"3I3I37RP52G1L15D8T8S");
curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
$data = curl_exec($ch);
echo "<p>$data</p>";
curl_close($ch);