From 5cb6d6e53780055e816df3092207a193203ea59d Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 1 Mar 2015 10:53:49 +0100 Subject: [PATCH] We have to disable the SSL checks, otherwise the communication will fail for servers with self-signed certificates --- include/network.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/include/network.php b/include/network.php index ab7a9c629..14497f01a 100644 --- a/include/network.php +++ b/include/network.php @@ -34,6 +34,11 @@ function fetch_url($url,$binary = false, &$redirects = 0, $timeout = 0, $accept_ )); } + // There are many servers out there that don't have valid certificates + // We have to disable the checks :-( + @curl_setopt($ch, CURLOPT_SSL_VERIFYPEER,false); + @curl_setopt($ch, CURLOPT_SSL_VERIFYHOST,false); + @curl_setopt($ch, CURLOPT_RETURNTRANSFER,true); @curl_setopt($ch, CURLOPT_USERAGENT, $a->get_useragent());