Questtype ?Textinput?: add support for field sizes (Issue #252) and general improvements
This commit is contained in:
commit
8d903135a5
3476 changed files with 599099 additions and 0 deletions
47
www/analytics/misc/cron/updatetoken.php
Normal file
47
www/analytics/misc/cron/updatetoken.php
Normal file
|
|
@ -0,0 +1,47 @@
|
|||
<?php
|
||||
/**
|
||||
* Piwik - Open source web analytics
|
||||
*
|
||||
* @link http://piwik.org
|
||||
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
|
||||
*
|
||||
* @category Piwik
|
||||
* @package Piwik
|
||||
*/
|
||||
|
||||
namespace Piwik;
|
||||
|
||||
if (!defined('PIWIK_INCLUDE_PATH')) {
|
||||
define('PIWIK_INCLUDE_PATH', realpath(dirname(__FILE__) . "/../.."));
|
||||
}
|
||||
|
||||
if (!defined('PIWIK_USER_PATH')) {
|
||||
define('PIWIK_USER_PATH', PIWIK_INCLUDE_PATH);
|
||||
}
|
||||
|
||||
define('PIWIK_ENABLE_DISPATCH', false);
|
||||
define('PIWIK_ENABLE_ERROR_HANDLER', false);
|
||||
define('PIWIK_ENABLE_SESSION_START', false);
|
||||
|
||||
require_once PIWIK_INCLUDE_PATH . "/index.php";
|
||||
|
||||
if (!Common::isPhpCliMode()) {
|
||||
return;
|
||||
}
|
||||
|
||||
$testmode = in_array('--testmode', $_SERVER['argv']);
|
||||
if ($testmode) {
|
||||
require_once PIWIK_INCLUDE_PATH . "/tests/PHPUnit/TestingEnvironment.php";
|
||||
|
||||
\Piwik_TestingEnvironment::addHooks();
|
||||
}
|
||||
|
||||
$token = Db::get()->fetchOne("SELECT token_auth
|
||||
FROM " . Common::prefixTable("user") . "
|
||||
WHERE superuser_access = 1
|
||||
ORDER BY date_registered ASC");
|
||||
|
||||
$filename = PIWIK_INCLUDE_PATH . '/tmp/cache/token.php';
|
||||
$content = "<?php exit; //\t" . $token;
|
||||
file_put_contents($filename, $content);
|
||||
echo $filename;
|
||||
Loading…
Add table
Add a link
Reference in a new issue