curl-and-php
unable to set certificate file (wrong password?)
Date: Tue, 29 Nov 2005 09:21:15 -0800 (PST)
Hi,
I'm new to curl and I'm having problem with it.
I have these codes:
$host = "secure.linkpt.net";
$port = 1129;
$cert = ".\key.pem"; # change this to the name and location of your certificate file
$hoststring = "https://".$host.":".$port."/LSGSXML";
$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL,$hoststring);
curl_setopt ($ch, CURLOPT_POST, 1);
curl_setopt ($ch, CURLOPT_POSTFIELDS, $xml);
curl_setopt ($ch, CURLOPT_SSLCERT, $cert);
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt ($ch, CURLOPT_SSL_VERIFYPEER, 0);
and got the error : unable to set certificate file (wrong password?)
The .pem file has both the private key and the certificate.
Any help will be appreciated.
Thanks.
_______________________________________________
http://cool.haxx.se/cgi-bin/mailman/listinfo/curl-and-php
Received on 2005-11-29