From ee013b009a7bb4859f3c87c9e8ccb950e932c9d9 Mon Sep 17 00:00:00 2001 From: "maenz.torsten" Date: Fri, 27 Aug 2021 19:33:12 +0200 Subject: [PATCH] * disable wait in curl request (php method) --- system/includes/functions.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/system/includes/functions.php b/system/includes/functions.php index e4973aa..fa36288 100644 --- a/system/includes/functions.php +++ b/system/includes/functions.php @@ -2078,6 +2078,9 @@ EOF; // Matomo object $matomoTracker = new MatomoTracker((int) $matomoID, $matomoURL); + // do not wait + $matomoTracker->setRequestTimeout(1); + // Set authentication token $matomoTracker->setTokenAuth($matomoToken);