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:
authormatt <matt@59fd770c-687e-43c8-a1e3-f5a4ff64c105>2009-03-27 08:53:48 +0300
committermatt <matt@59fd770c-687e-43c8-a1e3-f5a4ff64c105>2009-03-27 08:53:48 +0300
commitbc89b5ec03cf3833a41560110b0e433f93232c22 (patch)
tree2f43f6a73739276380399ec8ed2b0eb40fdf2fb6 /misc
parentcd91ede1a0455b07039df0295a52f94924fdf204 (diff)
- memory and speed optimizations of archiving, refs #374 (hopefully fixing it but not sure yet)
- added support for profiling memory & time in Piwik via the events mechanism - small other changes
Diffstat (limited to 'misc')
-rw-r--r--misc/generateVisits.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/misc/generateVisits.php b/misc/generateVisits.php
index 7e87c1257e..0258fa6c5d 100644
--- a/misc/generateVisits.php
+++ b/misc/generateVisits.php
@@ -3,10 +3,10 @@
* The script can be used to generate huge number of visits and actions
* for a given number of days.
*/
-$minVisitors = 200;
-$maxVisitors = 200;
-$nbActions = 5;
-$daysToCompute = 2;
+$minVisitors = 20000;
+$maxVisitors = 20000;
+$nbActions = 10;
+$daysToCompute = 5;
//-----------------------------------------------------------------------------
error_reporting(E_ALL|E_NOTICE);
@@ -19,7 +19,7 @@ set_include_path(PIWIK_INCLUDE_PATH
. PATH_SEPARATOR . PIWIK_INCLUDE_PATH . '/core'
. PATH_SEPARATOR . get_include_path() );
-$GLOBALS['DEBUGPIWIK'] = false;
+$GLOBALS['PIWIK_TRACKER_DEBUG'] = false;
ob_start();
// first check that user has privileges to create some random data in the DB -> he must be super user