From: Michael Vogel Date: Sat, 24 Oct 2015 18:41:21 +0000 (+0200) Subject: Workaround for bad configured servers X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=ddc8f069f2f4a6571b162061497e91e0497103b3;p=friendica.git Workaround for bad configured servers --- diff --git a/include/socgraph.php b/include/socgraph.php index b0f0c8672f..225acda4a2 100644 --- a/include/socgraph.php +++ b/include/socgraph.php @@ -748,8 +748,11 @@ function poco_check_server($server_url, $network = "", $force = false) { } if (!$serverret["success"] OR ($serverret["body"] == "") OR (sizeof($xmlobj) == 0) OR !is_object($xmlobj)) { - $last_failure = datetime_convert(); - $failure = true; + // Workaround for bad configured servers (known nginx problem) + if ($serverret["debug"]["http_code"] != "403") { + $last_failure = datetime_convert(); + $failure = true; + } } elseif ($network == NETWORK_DIASPORA) $last_contact = datetime_convert();