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
path: root/misc
diff options
context:
space:
mode:
authorJustin Velluppillai <justin@innocraft.com>2021-06-25 11:26:04 +0300
committerGitHub <noreply@github.com>2021-06-25 11:26:04 +0300
commit053ff36abf58a2be72ec1f67c9ebac17fcecdb5d (patch)
tree6c682e57b04e19460b2f909045082c14a02ecb2b /misc
parent6d185ad71c57e8dd6af7880325b8514d21d3c225 (diff)
Web cron archive - allow POST'd token_auth (#17703)
* Web cron archive - allow POST'd token_auth * Explicitly check for empty string Co-authored-by: Stefan Giehl <stefan@matomo.org> Co-authored-by: Stefan Giehl <stefan@matomo.org>
Diffstat (limited to 'misc')
-rw-r--r--misc/cron/archive.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/misc/cron/archive.php b/misc/cron/archive.php
index e7ac710d14..c7846adb2e 100644
--- a/misc/cron/archive.php
+++ b/misc/cron/archive.php
@@ -54,7 +54,7 @@ try 'php archive.php --url=http://your.piwik/path'
$_GET['method'] = 'CoreAdminHome.runCronArchiving';
$_GET['format'] = 'console'; // will use Content-type text/plain
- if(!isset($_GET['token_auth'])) {
+ if('' === Piwik\Common::getRequestVar('token_auth', '', 'string')) {
echo "
<b>You must specify the Super User token_auth as a parameter to this script, eg. <code>?token_auth=XYZ</code> if you wish to run this script through the browser. </b><br>
However it is recommended to run it <a href='https://matomo.org/docs/setup-auto-archiving/'>via cron in the command line</a>, since it can take a long time to run.<br/>
@@ -65,4 +65,4 @@ In a shell, execute for example the following to trigger archiving on the local
}
require_once PIWIK_INCLUDE_PATH . "/index.php";
-} \ No newline at end of file
+}