From 0bcf3a00bcc8e8c7aef54c7b1d3ca86f5557d257 Mon Sep 17 00:00:00 2001 From: mattab <matthieu.aubry@gmail.com> Date: Mon, 16 Dec 2013 23:56:12 +1300 Subject: [PATCH] Accept self serverd certif --- core/SettingsPiwik.php | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/core/SettingsPiwik.php b/core/SettingsPiwik.php index 353256e7d7..f71ecf0ec1 100644 --- a/core/SettingsPiwik.php +++ b/core/SettingsPiwik.php @@ -273,7 +273,19 @@ class SettingsPiwik { // Now testing if the webserver is running try { - $fetched = Http::sendHttpRequest($piwikServerUrl, $timeout = 45); + $fetched = Http::sendHttpRequestBy('curl', + $piwikServerUrl, + $timeout = 45, + $userAgent = null, + $destinationPath = null, + $file = null, + $followDepth = 0, + $acceptLanguage = false, + + // Accept self signed certificates for now + $acceptInvalidSslCertificate = true + ); + } catch (Exception $e) { $fetched = "ERROR fetching: " . $e->getMessage(); } -- GitLab