From 518c53bd8236489190fb8f19e93d6d9f0832b9e9 Mon Sep 17 00:00:00 2001 From: james Date: Sun, 5 Apr 2009 15:45:43 +0000 Subject: [PATCH] Turn off the certifiicate validation for the SSL on cwsfregister --- admin/cwsfregister.php | 1 + 1 file changed, 1 insertion(+) diff --git a/admin/cwsfregister.php b/admin/cwsfregister.php index b0a52609..f5660e6b 100644 --- a/admin/cwsfregister.php +++ b/admin/cwsfregister.php @@ -147,6 +147,7 @@ include "xml.inc.php"; curl_setopt ($ch, CURLOPT_POSTFIELDSIZE, 0); curl_setopt ($ch, CURLOPT_TIMEOUT, 360); curl_setopt ($ch, CURLOPT_SSLVERSION, 3); + curl_setopt ($ch, CURLOPT_SSL_VERIFYPEER, false); $datastream = curl_exec ($ch); /// execute the curl session and return the output to a variable $datastream $datastream = str_replace(" standalone=\"yes\"","",$datastream); // echo "curl close
";