Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Steur <tsteur@users.noreply.github.com>2020-04-07 09:54:04 +0300
committerGitHub <noreply@github.com>2020-04-07 09:54:04 +0300
commit71678ffb0acbaac470be94b85015a0a22c615205 (patch)
tree43dcd5120fdc8ccdbfeed7de2a7f43514ab35525 /plugins/Diagnostics
parent79d35df06e9dd45ab32ab1db0185a4e603485590 (diff)
Fix console command missing in diagnostics check (#15783)
fix https://github.com/matomo-org/matomo/issues/15781
Diffstat (limited to 'plugins/Diagnostics')
-rw-r--r--plugins/Diagnostics/Diagnostic/CronArchivingLastRunCheck.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Diagnostics/Diagnostic/CronArchivingLastRunCheck.php b/plugins/Diagnostics/Diagnostic/CronArchivingLastRunCheck.php
index e226644985..ec17b8b69f 100644
--- a/plugins/Diagnostics/Diagnostic/CronArchivingLastRunCheck.php
+++ b/plugins/Diagnostics/Diagnostic/CronArchivingLastRunCheck.php
@@ -93,7 +93,7 @@ class CronArchivingLastRunCheck implements Diagnostic
private function getArchivingCommand()
{
$domain = Config::getHostname();
- return PIWIK_INCLUDE_PATH . ' --matomo-domain=' . $domain . ' core:archive';
+ return PIWIK_INCLUDE_PATH . '/console --matomo-domain=' . $domain . ' core:archive';
}
public static function getTimeSinceLastSuccessfulRun($lastRunTime = null)