Skip to content
Extraits de code Groupes Projets
Valider cbc8714a rédigé par diosmosis's avatar diosmosis
Parcourir les fichiers

Moving CronArchive token auth check to archive script since it is only for...

Moving CronArchive token auth check to archive script since it is only for when the archive.php script is invoked from a web request.
parent 9b713ca1
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
...@@ -853,26 +853,6 @@ class CronArchive ...@@ -853,26 +853,6 @@ class CronArchive
} }
} }
/**
* Script does run on http:// ONLY if the SU token is specified
*/
private function initCheckCli()
{
if (Common::isPhpCliMode()) {
return;
}
$token_auth = Common::getRequestVar('token_auth', '', 'string');
if ($token_auth !== $this->token_auth
|| strlen($token_auth) != 32
) {
die('<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="http://piwik.org/docs/setup-auto-archiving/">via cron in the command line</a>, since it can take a long time to run.<br/>
In a shell, execute for example the following to trigger archiving on the local Piwik server:<br/>
<code>$ /path/to/php /path/to/piwik/console core:archive --url=http://your-website.org/path/to/piwik/</code>');
}
}
/** /**
* Init Piwik, connect DB, create log & config objects, etc. * Init Piwik, connect DB, create log & config objects, etc.
*/ */
......
...@@ -56,6 +56,17 @@ if (isset($_SERVER['argv']) && Piwik\Console::isSupported()) { ...@@ -56,6 +56,17 @@ if (isset($_SERVER['argv']) && Piwik\Console::isSupported()) {
$console->run(); $console->run();
} else { // if running via web request, use CronArchive directly } else { // if running via web request, use CronArchive directly
$token_auth = Piwik\Common::getRequestVar('token_auth', '', 'string');
if ($token_auth !== $this->token_auth
|| strlen($token_auth) != 32
) {
die('<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="http://piwik.org/docs/setup-auto-archiving/">via cron in the command line</a>, since it can take a long time to run.<br/>
In a shell, execute for example the following to trigger archiving on the local Piwik server:<br/>
<code>$ /path/to/php /path/to/piwik/console core:archive --url=http://your-website.org/path/to/piwik/</code>');
}
$archiver = new Piwik\CronArchive(); $archiver = new Piwik\CronArchive();
$archiver->main(); $archiver->main();
} }
\ No newline at end of file
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Veuillez vous inscrire ou vous pour commenter