Hi,
I need to run a script in a https server.
I'm using cURL but it returns me: Your connection is using a weak random seed! * Closing live connection (#0)
Here is my code:
$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);
curl_close($ch);
Can anyone help me with this?
Thanks
Anikin
I need to run a script in a https server.
I'm using cURL but it returns me: Your connection is using a weak random seed! * Closing live connection (#0)
Here is my code:
$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);
curl_close($ch);
Can anyone help me with this?
Thanks
Anikin