Description of problem: curl doesn't not seem to be able to retrieve https urls. The command line version of curl *does* work. How reproducible: Always Steps to Reproduce: 1. Create a php web page that uses curl to fetch a https url. 2. Visit the php web page. Actual Results: SSL: couldn't create a context! 27 result='' Expected Results: I expect to see the contents of the url that I specified. Additional info: This is the code I used on the php page. $ch = curl_init(); curl_setopt($ch, CURLOPT_VERBOSE, 1); curl_setopt($ch, CURLOPT_URL,"https://www.gotomypc.com/"); $result=curl_exec ($ch); echo curl_error($ch) . "<br>\n"; echo curl_errno($ch) . "<br>\n"; curl_close ($ch); echo "result='$result'";
Humm I just tried that with the current errata and it worked There will be an updated errata coming out real soon though,.. Phil =--=