From 8af5de9625bf3b0dda4c8a21092c20a0df060b99 Mon Sep 17 00:00:00 2001 From: dave Date: Sun, 5 Apr 2009 19:22:09 +0000 Subject: [PATCH] - Also do the SSL trick for YSF stats --- admin/ysfstats.php | 1 + 1 file changed, 1 insertion(+) diff --git a/admin/ysfstats.php b/admin/ysfstats.php index 434b1fe7..a99e6fe4 100644 --- a/admin/ysfstats.php +++ b/admin/ysfstats.php @@ -46,6 +46,7 @@ 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
";