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:
Diffstat (limited to 'misc')
-rw-r--r--misc/TODO7
-rw-r--r--misc/WebAppGallery/Manifest.xml10
-rw-r--r--misc/WebAppGallery/parameters.xml24
-rw-r--r--misc/cron/archive.sh65
-rw-r--r--misc/cron/archive.windows.ps188
-rw-r--r--misc/generateVisits.php118
-rw-r--r--misc/generateVisitsData/AcceptLanguage.php528
-rw-r--r--misc/generateVisitsData/Referers.php686
-rw-r--r--misc/generateVisitsData/UserAgent.php53
-rw-r--r--misc/redirectToUrl.php5
10 files changed, 141 insertions, 1443 deletions
diff --git a/misc/TODO b/misc/TODO
deleted file mode 100644
index a8cfe5555c..0000000000
--- a/misc/TODO
+++ /dev/null
@@ -1,7 +0,0 @@
-To fix
-======
-- ADD forward of non true show_values to forward when specified from URL to ajax
-
-CHANGES DONE TO LIBRARIES
-=========================
-- fixed PEAR so that it works under PHP5 with STRICT MODE enabled
diff --git a/misc/WebAppGallery/Manifest.xml b/misc/WebAppGallery/Manifest.xml
index 2e0b2e8490..55ad514465 100644
--- a/misc/WebAppGallery/Manifest.xml
+++ b/misc/WebAppGallery/Manifest.xml
@@ -3,16 +3,6 @@
<setAcl
path="piwik"
setAclUser="anonymousAuthenticationUser"
- setAclAccess="ReadAndExecute,ListDirectory"
- />
- <setAcl
- path="piwik/config"
- setAclUser="anonymousAuthenticationUser"
- setAclAccess="Modify"
- />
- <setAcl
- path="piwik/tmp"
- setAclUser="anonymousAuthenticationUser"
setAclAccess="Modify"
/>
</MSDeploy.iisApp>
diff --git a/misc/WebAppGallery/parameters.xml b/misc/WebAppGallery/parameters.xml
index 41f5246b90..d5edd33bf0 100644
--- a/misc/WebAppGallery/parameters.xml
+++ b/misc/WebAppGallery/parameters.xml
@@ -23,28 +23,4 @@
match="piwik"
/>
</parameter>
- <parameter
- name="SetAclParameterConfig"
- description="Sets the ACL on the configuration folder"
- defaultValue="{Application Path}/config"
- tags="Hidden"
- >
- <parameterEntry
- type="ProviderPath"
- scope="setAcl"
- match="piwik/config"
- />
- </parameter>
- <parameter
- name="SetAclParameterTmp"
- description="Sets the ACL on the tmp folder"
- defaultValue="{Application Path}/tmp"
- tags="Hidden"
- >
- <parameterEntry
- type="ProviderPath"
- scope="setAcl"
- match="piwik/tmp"
- />
- </parameter>
</parameters>
diff --git a/misc/cron/archive.sh b/misc/cron/archive.sh
index 704068864d..9b60016fc7 100644
--- a/misc/cron/archive.sh
+++ b/misc/cron/archive.sh
@@ -1,7 +1,9 @@
#!/bin/bash -e
# Description
-# This script automatically fetches the Super User token_auth
+# This cron script will automatically run Piwik archiving every hour.
+
+# It automatically fetches the Super User token_auth
# and triggers the archiving for all websites for all periods.
# This ensures that all reports are pre-computed and Piwik renders very fast.
@@ -10,25 +12,39 @@
# How to setup the crontab job?
# Add the following lines in your crontab file, eg. /etc/cron.d/piwik-archive
+#---------------START CRON TAB--
#MAILTO="youremail@example.com"
-#5 0 * * * www-data /path/to/piwik/misc/cron/archive.sh > /dev/null
-
-# Other optimization for high traffic websites
-# You may want to override the following settings in config/config.ini.php (see documentation in config/config.ini.php)
+#5 * * * * www-data /path/to/piwik/misc/cron/archive.sh > /dev/null
+#-----------------END CRON TAB--
+# When an error occurs (eg. php memory error, timeout) the error messages
+# will be sent to youremail@example.com.
+#
+# Optimization for high traffic websites
+# You may want to override the following settings in config/config.ini.php:
+# See documentation of the fields in your piwik/config/config.ini.php
+#
# [General]
# time_before_archive_considered_outdated = 3600
# enable_browser_archiving_triggering = false
+#
+#===========================================================================
-PHP_BIN=`which php5 2>/dev/null`
+for TEST_PHP_BIN in php5 php php-cli php-cgi; do
+ if which $TEST_PHP_BIN >/dev/null 2>/dev/null; then
+ PHP_BIN=`which $TEST_PHP_BIN`
+ break
+ fi
+done
if test -z $PHP_BIN; then
- PHP_BIN=`which php`
+ echo "php binary not found. Make sure php5 or php exists in PATH."
+ exit 1
fi
act_path() {
- local pathname="$1"
- readlink -f "$pathname" 2>/dev/null || \
- realpath "$pathname" 2>/dev/null || \
- type -P "$pathname" 2>/dev/null
+ local pathname="$1"
+ readlink -f "$pathname" 2>/dev/null || \
+ realpath "$pathname" 2>/dev/null || \
+ type -P "$pathname" 2>/dev/null
}
ARCHIVE=`act_path ${0}`
@@ -39,11 +55,28 @@ PIWIK_CONFIG="$PIWIK_CRON_FOLDER"/../../config/config.ini.php
PIWIK_SUPERUSER=`sed '/^\[superuser\]/,$!d;/^login[ \t]*=[ \t]*"*/!d;s///;s/"*[ \t]*$//;q' $PIWIK_CONFIG`
PIWIK_SUPERUSER_MD5_PASSWORD=`sed '/^\[superuser\]/,$!d;/^password[ \t]*=[ \t]*"*/!d;s///;s/"*[ \t]*$//;q' $PIWIK_CONFIG`
-CMD_TOKEN_AUTH="$PHP_BIN $PIWIK_PATH -- module=API&method=UsersManager.getTokenAuth&userLogin=$PIWIK_SUPERUSER&md5Password=$PIWIK_SUPERUSER_MD5_PASSWORD&format=php&serialize=0"
+CMD_TOKEN_AUTH="$PHP_BIN -q $PIWIK_PATH -- module=API&method=UsersManager.getTokenAuth&userLogin=$PIWIK_SUPERUSER&md5Password=$PIWIK_SUPERUSER_MD5_PASSWORD&format=php&serialize=0"
TOKEN_AUTH=`$CMD_TOKEN_AUTH`
-for period in day week year; do
- CMD="$PHP_BIN $PIWIK_PATH -- module=API&method=VisitsSummary.getVisits&idSite=all&period=$period&date=last52&format=xml&token_auth=$TOKEN_AUTH";
- $CMD
- echo ""
+CMD_GET_ID_SITES="$PHP_BIN -q $PIWIK_PATH -- module=API&method=SitesManager.getAllSitesId&token_auth=$TOKEN_AUTH&format=csv&convertToUnicode=0"
+ID_SITES=`$CMD_GET_ID_SITES`
+echo "Starting Piwik archiving..."
+echo ""
+for idsite in $ID_SITES; do
+ TEST_IS_NUMERIC=`echo $idsite | egrep '^[0-9]+$'`
+ if [ "$TEST_IS_NUMERIC" ]
+ then
+ for period in day week year; do
+ echo ""
+ echo "Archiving period = $period for idsite = $idsite..."
+ CMD="$PHP_BIN -q $PIWIK_PATH -- module=API&method=VisitsSummary.getVisits&idSite=$idsite&period=$period&date=last52&format=xml&token_auth=$TOKEN_AUTH";
+ $CMD
+ done
+
+ echo ""
+ echo "Archiving for idsite = $idsite done!"
+ fi
done
+
+echo "Piwik archiving finished."
+
diff --git a/misc/cron/archive.windows.ps1 b/misc/cron/archive.windows.ps1
new file mode 100644
index 0000000000..a853960e12
--- /dev/null
+++ b/misc/cron/archive.windows.ps1
@@ -0,0 +1,88 @@
+#===========================================================================
+# Description
+# This powershell script will automatically run Piwik archiving for whatever
+# frequency you set it up to run, it is recommended that is be every 1 hour
+# or 3600 seconds.
+
+# It automatically fetches the Super User token_auth
+# and triggers the archiving for all websites for all periods.
+# This ensures that all reports are pre-computed and Piwik renders very fast.
+
+# Documentation
+# Please check the documentation on http://piwik.org/docs/setup-auto-archiving/
+
+# Optimization for high traffic websites
+# You may want to override the following settings in config/config.ini.php:
+# See documentation of the fields in your piwik/config/config.ini.php
+#
+# [General]
+# time_before_archive_considered_outdated = 3600
+# enable_browser_archiving_triggering = false
+#
+#===========================================================================
+$PHP_INI = "C:\Program Files\EasyPHP-5.3.2i\apache\php.ini"
+$BINS = @("php5.exe", "php.exe")
+
+foreach($phpTestBin in $BINS)
+{
+ if(Get-Command $phpTestBin -ea SilentlyContinue)
+ {
+ $PHP_BIN = Get-Command $phpTestBin|Select-Object -ExpandProperty Definition
+ break
+ }
+}
+
+if(($PHP_BIN -eq $null) -or !(Test-Path $PHP_BIN -ea SilentlyContinue))
+{
+ Write-Host "php binary not found. Make sure php5 or php exists in PATH."
+ Exit 1
+}
+
+$PIWIK_SCRIPT_FOLDER = Split-Path -parent $MyInvocation.MyCommand.Definition
+$PIWIK_PATH="$PIWIK_SCRIPT_FOLDER\..\..\index.php"
+$PIWIK_CONFIG="$PIWIK_SCRIPT_FOLDER\..\..\config/config.ini.php"
+
+Function Parse-IniFile ($file) {
+ $ini = @{}
+ switch -regex -file $file {
+ "^\[(.+)\]$" {
+ $section = $matches[1].Trim()
+ $ini[$section] = @{}
+ }
+ "(.+)=(.+)" {
+ $name,$value = $matches[1..2]
+ $name = $name.Trim()
+ $value = $value.Trim()
+ $ini[$section][$name] = $value
+ }
+ }
+ $ini
+}
+
+$CONFIG = Parse-IniFile $PIWIK_CONFIG
+$PIWIK_SUPERUSER=$CONFIG["superuser"]["login"].Replace('"', '')
+$PIWIK_SUPERUSER_MD5_PASSWORD=$CONFIG["superuser"]["password"].Replace('"', '')
+
+$TOKEN_AUTH= & $PHP_BIN -c $PHP_INI "$PIWIK_PATH" "--" "module=API&method=UsersManager.getTokenAuth&userLogin=$PIWIK_SUPERUSER&md5Password=$PIWIK_SUPERUSER_MD5_PASSWORD&format=php&serialize=0"
+
+$ID_SITES= & $PHP_BIN -c $PHP_INI "$PIWIK_PATH" "--" "module=API&method=SitesManager.getAllSitesId&token_auth=$TOKEN_AUTH&format=csv&convertToUnicode=0"
+
+Write-Host "Starting Piwik archiving..."
+
+foreach($ID_SITE in $ID_SITES)
+{
+ if($ID_SITE -match "^\d+$")
+ {
+ foreach($period in @("day","week","year"))
+ {
+ Write-Host ""
+ Write-Host "Archiving period = $period for idsite = $ID_SITE..."
+ & $PHP_BIN -c $PHP_INI "$PIWIK_PATH" "--" "module=API&method=VisitsSummary.getVisits&idSite=$ID_SITE&period=$period&date=last52&format=xml&token_auth=$TOKEN_AUTH"
+ }
+
+ Write-Host ""
+ Write-Host "Archiving for idsite = $ID_SITE done!"
+ }
+}
+
+Write-Host "Piwik archiving finished." \ No newline at end of file
diff --git a/misc/generateVisits.php b/misc/generateVisits.php
deleted file mode 100644
index 35dec2be44..0000000000
--- a/misc/generateVisits.php
+++ /dev/null
@@ -1,118 +0,0 @@
-<?php
-/*
- * The script can be used to generate huge number of visits and actions
- * for a given number of days.
- */
-
-if(file_exists('../bootstrap.php'))
-{
- require_once '../bootstrap.php';
-}
-
-if(empty($_GET['choice']) || $_GET['choice'] != 'yes') {
- echo "<div style='color:red;font-size:large'>WARNING!</div> <br>You are about to generate fake visits which will be recorded in your Piwik database.
- <br>It will <b>not</b> be possible to easily delete these visits from the piwik logs.
- <br><br>Are you sure you want to generate fake visits?
- <br><br>
- <a href='../index.php'><b>NO</b>, I do not want to generate fake visits</a>
- <br><br>
- <a href='?choice=yes'><b>YES</b>, I want to generate fake visits</a>
- <br><br>
- Note: you can edit the source code of this file to specify how many visits to generate, how many days, etc.
- ";
- return;
-}
-
-
-// TODO - generator should generate pages with slash, then test that period archiving doesn't show the unique page view
-// TODO - should generate goals with keyword or referer that are not found for this day, to simulate a referer 5 days ago and conversion today
-$minVisitors = 20;
-$maxVisitors = 100;
-$nbActions = 10;
-$daysToCompute = 1;
-$idSite = 1;
-
-
-//-----------------------------------------------------------------------------
-error_reporting(E_ALL|E_NOTICE);
-if(!defined('PIWIK_INCLUDE_PATH'))
-{
- define('PIWIK_INCLUDE_PATH', '..');
-}
-ignore_user_abort(true);
-
-if(!defined('PIWIK_INCLUDE_SEARCH_PATH'))
-{
- define('PIWIK_INCLUDE_SEARCH_PATH', PIWIK_INCLUDE_PATH . '/core'
- . PATH_SEPARATOR . PIWIK_INCLUDE_PATH . '/libs'
- . PATH_SEPARATOR . PIWIK_INCLUDE_PATH . '/plugins');
- @ini_set('include_path', PIWIK_INCLUDE_SEARCH_PATH);
- @set_include_path(PIWIK_INCLUDE_SEARCH_PATH);
-}
-
-$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
-define('PIWIK_ENABLE_DISPATCH', false);
-require_once PIWIK_INCLUDE_PATH . "/index.php";
-require_once "FrontController.php";
-
-Piwik::setMaxExecutionTime(0);
-$idSite = Piwik_Common::getRequestVar('idSite', $idSite, 'int');
-
-try {
- Piwik_FrontController::getInstance()->init();
-} catch( Exception $e) {
- echo $e->getMessage();
- exit;
-}
-Piwik::checkUserIsSuperUser();
-
-require_once "PluginsManager.php";
-require_once "Tracker.php";
-
-//Piwik_PluginsManager::getInstance()->unloadPlugins();
-
-// we have to unload the Provider plugin otherwise it tries to lookup the IP for ahostname, and there is no dns server here
-if(Piwik_PluginsManager::getInstance()->isPluginActivated('Provider'))
-{
- Piwik_PluginsManager::getInstance()->unloadPlugin('Provider');
-}
-
-// we set the DO NOT load plugins so that the Tracker generator doesn't load the plugins we've just disabled.
-// if for some reasons you want to load the plugins, comment this line, and disable the plugin Provider in the plugins interface
-Piwik_PluginsManager::getInstance()->doNotLoadPlugins();
-
-$generator = new Piwik_Tracker_Generator;
-$generator->setMaximumUrlDepth(3);
-//$generator->disableProfiler();
-$generator->setIdSite( $idSite );
-
-$nbActionsTotal = 0;
-//$generator->emptyAllLogTables();
-$generator->init();
-
-$t = new Piwik_Timer;
-
-$startTime = time() - ($daysToCompute-1)*86400;
-while($startTime <= time())
-{
- $visitors = rand($minVisitors, $maxVisitors);
- $actions = $nbActions;
- $generator->setTimestampToUse($startTime);
-
- $nbActionsTotalThisDay = $generator->generate($visitors, $actions);
- $actionsPerVisit = round($nbActionsTotalThisDay / $visitors);
- print("Generated $visitors unique visitors and $actionsPerVisit actions per visit for the ".date("Y-m-d", $startTime)."<br>\n");
- $startTime+=86400;
- $nbActionsTotal+=$nbActionsTotalThisDay;
- sleep(1);
-}
-
-echo "<br>Total actions: $nbActionsTotal";
-echo "<br>Total requests per sec: ". round($nbActionsTotal / $t->getTime(),0);
-echo "<br>".$t;
-
-$generator->end();
-ob_end_flush();
diff --git a/misc/generateVisitsData/AcceptLanguage.php b/misc/generateVisitsData/AcceptLanguage.php
deleted file mode 100644
index 4994eee82b..0000000000
--- a/misc/generateVisitsData/AcceptLanguage.php
+++ /dev/null
@@ -1,528 +0,0 @@
-<?php
-$acceptLanguages = array(
-"fr",
-"fr,fr-fr;q=0.8,en-us",
-"fr-FR,fr;q=0.9,en;q=",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr,fr-fr;q=0.8,en-us",
-"fr",
-"fr,fr-fr;q=0.8,en-us",
-"fr,fr-fr;q=0.8,en-us",
-"fr",
-"fr",
-"fr-ch",
-"fr",
-"fr,fr-fr;q=0.8,en-us",
-"fr,fr-fr;q=0.8,en-us",
-"fr",
-"fr,fr-fr;q=0.8,en-us",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr,fr-fr;q=0.8,en-us",
-"fr,fr-fr;q=0.8,en-us",
-"fr-ca",
-"fr",
-"fr",
-"de",
-"fr",
-"fr",
-"fr",
-"fr-fr",
-"tr",
-"en-us",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr,fr-fr;q=0.8,en-us",
-"fr",
-"fr",
-"en",
-"fr",
-"fr",
-"fr,fr-fr;q=0.8,en-us",
-"fr",
-"fr",
-"hu-hu,hu;q=0.8,en-us",
-"fr",
-"fr-be",
-"fr",
-"cs,en-us;q=0.7,en;q=",
-"en,fr;q=0.91,de;q=0.",
-"fr",
-"fr-be",
-"fr",
-"fr",
-"fr,fr-fr;q=0.8,en-us",
-"fr",
-"fr",
-"fr,fr-fr;q=0.8,en-us",
-"fr",
-"fr,fr-fr;q=0.8,en-us",
-"fr-be",
-"fr",
-"fr",
-"fr",
-"fr,fr-fr;q=0.8,en-us",
-"fr",
-"fr",
-"fr-be",
-"fr,fr-fr;q=0.8,en-us",
-"en-us,en;q=0.5",
-"fr",
-"it-it,it;q=0.8,en-us",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr-fr",
-"el,fi;q=0.5",
-"fr,fr-fr;q=0.8,en-us",
-
-"fr",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr",
-
-"fr",
-"fr,fr-fr;q=0.8,en-us",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr,de-ch;q=0.5",
-"fr",
-"fr-ch",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr,fr-fr;q=0.8,en-us",
-"fr-fr,fr;q=0.5",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr-be",
-"fr-ca",
-"fr",
-"fr",
-"fr",
-"en-gb",
-"fr",
-"fr",
-"fr,fr-fr;q=0.8,en-us",
-"fr",
-"en,fr;q=0.8,fr-fr;q=",
-"fr,fr-fr;q=0.8,en-us",
-"fr-be",
-"fr",
-"fr",
-"fr,fr-fr;q=0.8,en-us",
-"fr,fr-fr;q=0.8,en-us",
-"fr,fr-fr;q=0.8,en-us",
-"fr,fr-fr;q=0.8,en-us",
-"fr,fr-fr;q=0.8,en-us",
-"fr",
-"fr",
-"pl",
-"fr",
-"fr",
-"en-us",
-"fr,fr-fr;q=0.8,en-us",
-"fr,fr-fr;q=0.8,en-us",
-"fr,fr-fr;q=0.8,en-us",
-"fr,fr-fr;q=0.8,en-us",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr,fr-fr;q=0.8,en-us",
-"en-us,en;q=0.5",
-"fr",
-"de",
-"it",
-"en-us,en;q=0.5",
-"fr",
-"en-us,en;q=0.5",
-"fr",
-"fr,fr-fr;q=0.8,en-us",
-"fr",
-"fr, en",
-"fr,fr-fr;q=0.8,en-us",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr,fr-fr;q=0.8,en-us",
-"fr",
-"fr,fr-fr;q=0.8,en-us",
-"fr,fr-fr;q=0.8,en-us",
-"fr",
-"fr,ar-dz;q=0.5",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr,fr-fr;q=0.8,en-us",
-"fr,fr-fr;q=0.8,en-us",
-"pl,en-us;q=0.7,en;q=",
-"en-gb",
-"fr-be",
-"hu",
-"fr",
-"fr,fr-fr;q=0.8,en-us",
-"de-de,de;q=0.8,en-us",
-"fr,fr-fr;q=0.8,en-us",
-"fr",
-"fr",
-"fr",
-"fr",
-"en-us",
-"fr",
-"fr-ch",
-"de",
-"fr",
-"fr",
-"bg",
-"fr,ar-ma;q=0.5",
-"fr",
-"fr",
-"fr-be",
-
-"fr",
-"fr",
-"fr",
-"fr",
-"fr,fr-fr;q=0.8,en-us",
-"fr",
-"en-us,en;q=0.5",
-"fr,fr-fr;q=0.8,en-us",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr,fr-fr;q=0.8,en-us",
-"fr,fr-fr;q=0.8,en-us",
-"fr",
-"fr",
-"fr",
-"fr,fr-fr;q=0.8,en-us",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr,fr-fr;q=0.8,en-us",
-"fr",
-"fr,fr-fr;q=0.8,en-us",
-"fr",
-"fr",
-"fr",
-"fr,fr-fr;q=0.8,en-us",
-"en-us,en;q=0.5",
-"fr",
-"fr",
-"fr-fr, fr;q=0.50",
-"fr",
-"fr",
-"fr",
-"fr,fr-fr;q=0.8,en-us",
-"fr",
-"fr",
-"fr",
-"fr,fr-fr;q=0.8,en-us",
-"fr,fr-fr;q=0.8,en-us",
-"fr",
-"fr",
-"fr",
-"fr,fr-fr;q=0.8,en-us",
-"fr",
-"fr,fr-fr;q=0.8,en-us",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr,fr-fr;q=0.8,en-us",
-"da-dk",
-"fr",
-"fr,fr-fr;q=0.8,en-us",
-"he",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr,fr-fr;q=0.8,en-us",
-"fr,fr-fr;q=0.8,en-us",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr,fr-fr;q=0.8,en-us",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr-ca",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr",
-"zh-cn",
-"fr",
-"fr",
-"fr",
-"fr,fr-fr;q=0.8,en-us",
-"fr",
-"fr",
-"fr",
-"fr,fr-fr;q=0.8,en-us",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr,fr-fr;q=0.8,en-us",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr",
-"it",
-"fr",
-"fr,fr-fr;q=0.8,en-us",
-"fr,fr-fr;q=0.8,en-us",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr-ch",
-"cs,en-us;q=0.7,en;q=",
-"th",
-"fr,fr-fr;q=0.8,en-us",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr,fr-fr;q=0.8,en-us",
-"fr-be",
-"fr",
-"fr",
-"fr",
-"fr",
-"en-us",
-"fr",
-"fr,fr-fr;q=0.8,en-us",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr,fr-fr;q=0.5",
-"cs,en-us;q=0.7,en;q=",
-"fr",
-"fr",
-"fr",
-"en-us",
-"fr",
-"fr,fr-fr;q=0.8,en-us",
-"fr,fr-fr;q=0.8,en-us",
-"fr",
-"fr",
-"fr",
-"ar-bh",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr",
-"en-us",
-"fr,fr-fr;q=0.8,en-us",
-"fr",
-"fr-ca",
-"fr-FR,fr;q=0.9,en;q=",
-"fr",
-"fr,fr-fr;q=0.8,en-us",
-"fr,fr-fr;q=0.8,en-us",
-"en-us",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr,fr-fr;q=0.8,en-us",
-"fr-be,fr;q=0.5",
-"fr",
-"fr",
-"fr",
-"en-us",
-"fr-fr",
-"fr,fr-fr;q=0.8,en-us",
-"fr",
-"fr,fr-fr;q=0.8,en-us",
-"fr,fr-fr;q=0.8,en-us",
-"fr,fr-fr;q=0.8,en-us",
-"fr,fr-fr;q=0.8,en-us",
-"fr",
-"fr",
-"fr",
-"fr,fr-fr;q=0.8,en-us",
-"fr,fr-fr;q=0.8,en-us",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr-be",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr-be",
-"fr",
-"fr-ca",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr,fr-fr;q=0.8,en-us",
-"fr",
-"fr",
-"fr",
-"fr,fr-fr;q=0.8,en-us",
-"fr",
-"fr",
-"fr",
-"fr,fr-fr;q=0.8,en-us",
-
-"fr",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr-be",
-"fr-fr",
-"tr",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr-be",
-"fr,fr-fr;q=0.8,en-us",
-"fr",
-"fr",
-"fr",
-"fr-be",
-"fr",
-"en-gb",
-"fr",
-"fr",
-"fr,fr-fr;q=0.8,en-us",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr",
-"fr,fr-fr;q=0.8,en-us",
-"fr,fr-fr;q=0.8,en-us",
-"fr",
-"fr",
-"fr",
-"fr-fr",
-"es-es,es;q=0.8,en-us",
-"fr,fr-fr;q=0.8,en-us",
-"fr-be",
-"fr",
-"fr",
-"en-us,en;q=0.5",
-"fr",
-"fr",
-"fr",
-
- );
-
diff --git a/misc/generateVisitsData/Referers.php b/misc/generateVisitsData/Referers.php
deleted file mode 100644
index 8a1a4c60b7..0000000000
--- a/misc/generateVisitsData/Referers.php
+++ /dev/null
@@ -1,686 +0,0 @@
-<?php
-$referers = array(
-"http://www.google.fr/search?hl=fr&q=statistique langues internet&btnG=Recherche Google&meta=",
-"http://annusiteperso.free.fr/",
-"http://www.google.com/search?hl=fr&sa=X&oi=spell&resnum=0&ct=result&cd=1&q=logiciel arab gratuit&spell=1",
-"http://www.google.de/search?hl=de&q=phpmyvisits&meta=&btnG=Google-Suche",
-"http://www.narodnjaci-mp3.cro-windows-vista.info/permalink.php?article=6.txt",
-"http://lelogiciellibre.net/telecharger/statistiques-audience-sites.php",
-"http://www.framasoft.net/article2101.html",
-"http://humour25.free.fr/index.php3?page=videos-sexe",
-"http://search.ke.voila.fr/S/orange?rtype=kw&profil=smart&bhv=web_fr&rdata=google&logid=2093200001174768155748412&keap=28&prevnbans=10&ap=4",
-"http://translate.google.com/translate_n?hl=en&sl=fr&u=http://www.phpmyvisites.net/&prev=/search%3Fq%3Dopen%2Bsource%2Bweb%2Banalytics%26hl%3Den%26safe%3Doff%26sa%3DG",
-"http://blog.bobobook.cn/?p=95",
-"http://www.google.com/search?q=creer site gratuit facile logiciel&sourceid=ie7&rls=com.microsoft:en-US&ie=utf8&oe=utf8",
-"http://search.ke.voila.fr/S/voila?profil=voila&bhv=web_fr&rdata=site%20de%20traduction%20gratuit",
-"http://www.google.com/search?sourceid=navclient&hl=fr&ie=UTF-8&rls=SUNA,SUNA:2006-25,SUNA:fr&q=configuration des mises %c3%a0 jour",
-"http://www.phpmyvisites.net/faq/",
-"http://www.framasoft.net/article2101.html",
-"http://www.neutrinium238.com/tutoriaux/photoshop/index.php?id=9",
-"http://www.google.co.th/search?hl=th&q=web statistic php&btnG=%E0%B8%84%E0%B9%89%E0%B8%99%E0%B8%AB%E0%B8%B2&meta=",
-"http://www.creer-un-site-internet.com/statistiques-site-internet.php",
-"http://forums.phpbb-fr.com/viewtopic_122536.html?hl=statistique",
-"http://www.computer.co.hu/index.php?option=com_contact&task=view&contact_id=3&Itemid=3",
-"http://www.google.fr/search?hl=fr&sa=X&oi=spell&resnum=0&ct=result&cd=1&q=phpmyvisites&spell=1",
-"http://siio.free.fr/12_Images3D_2005_001/index.htm",
-"http://www.phpmyvisites.us/",
-"http://philipeau.free.fr/logiciels.htm",
-"http://www.girls-love-shit.com/",
-"http://www.satellitemania.it/",
-"http://www.google.fr/search?hl=fr&q=phpmyvisites.net&meta=",
-"http://www.videoscoop.ch/nature.php",
-"http://www.google.fr/search?q=phpmyvisites&ie=utf-8&oe=utf-8&aq=t&rls=org.mozilla:fr:official&client=firefox-a",
-"http://www.csr.gov.rw/",
-"http://www.google.fr/search?q=statistiques php&ie=utf-8&oe=utf-8&aq=t&rls=org.mozilla:fr:official&client=firefox-a",
-"http://fr.search.yahoo.com/search?p=statistiques&fr=yfp-t-501&ei=UTF-8&meta=vc%3D",
-"http://anonymouse.org/cgi-bin/anon-www.cgi/http://www.tempsgranollers.com/rss.xml",
-"http://www.phpmyvisites.net/",
-"http://www.phpmyvisites.net/",
-"http://anonymouse.org/cgi-bin/anon-www.cgi/http://www.tempsgranollers.com/rss.xml",
-"http://www.google.es/search?hl=es&newwindow=1&q=php my visit&btnG=B%C3%BAsqueda&meta=lr%3D",
-"http://www.google.fr/search?hl=fr&q=creation de site web gratuit avec free&meta=",
-"http://www.gayfluence.com/index2.php",
-"http://www.phpscripts-fr.net/scripts/script.php?id=2120",
-"http://christophe.papin1.free.fr/cuisiniere.php?page=1&total=27",
-"http://universsimpson.free.fr/ullmanspage.php",
-"http://www.google.fr/search?q=configuration phpmyvisites&ie=utf-8&oe=utf-8&aq=t&rls=com.ubuntu:fr:official&client=firefox-a",
-"http://www.rapidojeux.com/",
-"http://www.phpmyvisites.us/",
-"http://www.unopiuuno.ch/",
-"http://www.babylon-x-fr.com/vcount/index.php?site=1&date=2007-03-23&period=1&mod=view_visits",
-"http://www.google.fr/search?hl=fr&q=The server encountered an internal error or misconfiguration and was unable to complete your request.&btnG=Recherche Google&meta=",
-"http://forum.pluxml.org/viewtopic.php?pid=3670",
-"http://stats.pointdecroix.org/phpmyvisites.php",
-"http://www.imageshock.eu/hotovo.php?idcka=69950&klic=st6njip0",
-"http://www.google.be/search?q=download&hl=fr&lr=lang_fr&start=30&sa=N",
-"http://www.justiciaviva.org.pe/phpmyvisites/index.php?part=pages&img=1&stats=1&date=2007-03-24&oldd=2007-03-24&per=1&site=1",
-"http://search.ke.voila.fr/S/orange?rtype=kw&profil=orange&bhv=web_fr&kw= &rdata=jeu pour jouer maintenant gratuit",
-"http://www.google.fr/search?q=phpmyvisites&ie=utf-8&oe=utf-8&aq=t&rls=org.mozilla:fr:official&client=firefox-a",
-"http://www.phwinfo.com/forum/showthread.php?t=1316",
-"http://by139fd.bay139.hotmail.msn.com/cgi-bin/getmsg?msg=274D9F1D-403E-49E1-A79C-9C568CABCFD0&start=0&len=7532&imgsafe=n&curmbox=00000000%2d0000%2d0000%2d0000%2d000000000001&a=3ce4627258ed7575c8d95f64bf4f6b108d8b30c775297517dcfee686fb26e3e0",
-"http://gibsea28.wifeo.com/index.php",
-"http://www.phpmyvisites.net/",
-"http://www.phpmyvisites.net/?_RW_=http%3A%2F%2Fwww.moto-site.ru%2F%3Fpg%3D0201|onclick|L8",
-"http://www.closerie-des-sacres.com/accueil.php?page=accueil1&lang=fr",
-"http://www.la-cuisine-marocaine.com/phpmyvisites/index.php?mod=login&error_login=1",
-"http://www.phpmyvisites.net/phpmv2/",
-"http://shoe.free.fr/root.php?target=snap",
-"http://www.phpmyvisites.net/",
-"http://www.jecolorie.com/",
-"http://www.google.fr/search?sourceid=navclient&hl=fr&ie=UTF-8&rls=DVXB,DVXB:2005-27,DVXB:fr&q=php my visite",
-"http://www.borber.com/en/projects/wp2drupal",
-"http://www.fil-en-scene.net/stats/phpmyvisites.php",
-"http://www.cote-dopale.com/statistiques/",
-"http://del.icio.us/search/?all=statistics&page=2",
-"http://www.unilago.com.co/",
-"http://www.offestival.com/contact-fr.html",
-"http://www.google.fr/search?hl=fr&q=telecharger plusieurs langue dans une site %2Bphp&meta=",
-"http://www.phpmyvisites.net/telechargements.html",
-"http://www.phpmyvisites.us/documentation/Installation",
-"http://www.phpscripts-fr.net/scripts/derniers.php",
-"http://belgant.winetux.be/forums/index.php?act=idx",
-"http://www.phpmyvisites.net/screenshots.html",
-"http://www.phpmyvisites.us/",
-"http://www.logement.com.tn/mvente.htm",
-"http://www.vinternet.net/",
-"http://crok.dockyr.com/",
-"http://www.lorajos.nl/",
-"http://homeomath.imingo.net/pagedr.htm",
-"http://www.tophost.it/aiuto/cat2/15/63/",
-"http://www.guides-webmaster.com/annuaire/",
-"http://www.google.co.ma/search?hl=fr&q=hebergeur my site for free&meta=",
-"http://www.delfiweb.com/v2/",
-"http://www.cuelgatuinvento.com/ideas/modules/news/article.php?storyid=113",
-"http://www.radioslavonija.hr/program/?o_programu",
-"http://www.mangas.adultes.free.fr/",
-"http://forum.telecharger.01net.com/telecharger/programmation_et_developpement/open_source/outil_gratuit_de_statistiques_de_sites_internet_pour_webmasters-311247/messages-1.html",
-"http://www.phpmyvisites.us/",
-"http://www.kaerwa-all-stars.de/rechts.htm",
-"http://www.google.fr/search?hl=fr&q=statistique site web&btnG=Recherche Google&meta=",
-"http://www.chorus-chanson.fr/HOME2/NUMERO57/dossierBrassens572.htm",
-"http://www.shirtjemeteenmissie.nl/static/index.php?mod=admin_index",
-"http://www.phpmyvisites.net/etudes-de-cas.html",
-"http://www.google.co.ma/search?hl=fr&q=logiciel gratuit&meta=",
-"http://www.fnar-tounes.com/sitemap.php",
-"http://www.11vm-serv.net/index.php?p=domregister",
-"http://www.google.fr/search?hl=fr&client=firefox-a&channel=s&rls=org.mozilla%3Afr%3Aofficial&q=Fatal error%3A Call to undefined function&btnG=Rechercher&meta=lr%3Dlang_fr",
-"http://proxyjoint.com/Y29t/ZGdhbWVza3k/d3d3/aHR0cDovL3d3dy5kZ2FtZXNreS5jb20vY2hlY2tvdXRfcGF5bWVudC5waHA/69/0/",
-"http://blog.bretagne-balades.org/index.php/",
-"http://www.framasoft.net/article2101.html",
-"http://www.google.fr/search?sourceid=navclient&hl=fr&ie=UTF-8&rls=GGLJ,GGLJ:2006-40,GGLJ:fr&q=phpmyvisites",
-"http://www.unilago.com.co/",
-"http://www.google.ca/search?hl=fr&q=statistiques site web&btnG=Recherche Google&meta=",
-"http://wars-world.fr/login.php",
-"http://www.phpmyvisites.net/?_RW_=http%3A%2F%2Fal-kanz.org%2Fblog%2F|onclick|L0",
-"http://news.itoncc.com/MingPao/eaindex.htm",
-"http://yanael.com/",
-"http://www.google.com/search?hl=en&rls=SUNA,SUNA:2006-13,SUNA:en&q=related:www.platinium-ca.com/nice.htm",
-"http://search.live.com/results.aspx?q=undefined&first=31&FORM=PERE3",
-"http://www.neutrinium238.com/tutoriaux/photoshop/utiliser_outil_plume.html",
-"http://www.scat-hell.com/",
-"http://search.ke.voila.fr/S/orange?rtype=kw&profil=orange&bhv=web_fr&rdata=GRATUIT&logid=1533300001174789477883674&keap=68&prevnbans=11&ap=8",
-"http://www.google.fr/search?hl=fr&q=simsun.ttc download&meta=",
-"http://www.webview360.com/room?room=165399",
-"http://www.zone-webmasters.net/scripts-php-41.php",
-"http://www.google.fr/search?hl=fr&sa=X&oi=spell&resnum=0&ct=result&cd=1&q=mesure d%27audience&spell=1",
-"http://www.mercy-mercy.com",
-"http://www.xxxpass.se/",
-"http://www.phpmyvisites.net/",
-"http://www.google.ca/search?hl=en&q=phpMyVisites&meta=",
-"http://www.google.fr/search?hl=fr&rls=GGLJ,GGLJ:2006-29,GGLJ:fr&sa=X&oi=spell&resnum=0&ct=result&cd=1&q=php my visite&spell=1",
-"http://foro.powers.cl/viewtopic.php?t=190228&sid=44b527252cd76e00ec9da17a102b0bda",
-"http://www.thediary.org/coleo",
-"http://www.girls-love-shit.com/",
-"http://didier-ott.no-ip.org/public/genea/cousins/diff/diff%20Files/doc6905.htm",
-"http://www.google.fr/search?hl=fr&q=statistique visite en PHP rapide&btnG=Rechercher&meta=",
-"http://seznamka.uzdroje.cz/",
-"http://www.google.fr/search?sourceid=navclient&aq=t&hl=fr&ie=UTF-8&rlz=1T4HPEB_frFR214FR214&q=erreur 500",
-"javascript:Defcat(live)",
-"http://imagelatente.ernestotimor.com/pages/ym-houses_11b.html",
-"http://www.google.fr/search?hl=fr&q=PHPMyVisites&btnG=Recherche Google&meta=lr%3Dlang_fr",
-"http://news.itoncc.com/MingPao/jaindex.htm",
-"http://www.tosdn.com/script/script.php?sid=2622&scat=23",
-"http://www.bswr.de/Fauna/Wanderfalke/OB_live1.htm",
-"http://linux.tlk.fr/games/Powermanga/screenshots/",
-"http://msdgmedia.free.fr/PagesNews/PageNews.html",
-"http://www.dotclear.net/forum/viewtopic.php?id=26210",
-"http://www.phpscripts-fr.net/scripts/script.php?id=2120",
-"http://szex.szextra.hu/cikk/?r=1",
-"http://www.startrek-voyager.nl/voyager/dek1.htm",
-"http://www.svenalbert.de/24-0-meine-gedanken.html",
-"http://www.google.fr/search?q=phpmyvisites&ie=utf-8&oe=utf-8&aq=t&rls=org.mozilla:fr:official&client=firefox-a",
-"http://www.google.fr/search?q=phpmyvisites&ie=utf-8&oe=utf-8&aq=t&rls=org.mozilla:fr:official&client=firefox-a",
-"http://www.google.fr/search?hl=fr&q=phpmyvisites&meta=",
-"http://siscalocca.org/blog/index.php",
-"http://search.ke.voila.fr/S/orange?rtype=kw&profil=smart&bhv=web_fr&kw= &rdata=moteurs de recherches",
-"http://www.phpmyvisites.us/requirements.html",
-"http://www.roi-president.com/galerie/pages/Cardinal_de_Richelieu.htm",
-"http://www.phpmyvisites.net/telechargements.html",
-"http://e.bardiau.free.fr/bonheur.html",
-"http://www.phpmyvisites.net/forums/index.php/t/1328/0/",
-"http://www.geraldlevanchau.com/stat/index.php?site=1&date=2007-03-24&period=1&mod=view_source",
-"http://www.asap-provence.fr/?get=Links&do=top-rank",
-"http://www.google.fr/search?hl=fr&q=logiciel pour creer des site internet gratuit avec exemple&meta=",
-"http://www.meteo.lt/oru_prognoze.php",
-"http://meshlab.sourceforge.net/phpmv2/index.php?site=1&period=1&mod=view_referers&date=2007-03-22",
-"http://www.icaformation.fr/Presentation.php",
-"http://search.ke.voila.fr/S/orange?sev=&rtype=kw&profil=orange&bhv=web_fr&rdata=SOUMETTRE UN SITE%2BORANGE&submit.x=32&submit.y=5",
-"http://www.google.cn/search?q=CV de statistique&complete=1&hl=zh-CN&inlang=zh-CN&newwindow=1&client=aff-5566&channel=searchbutton2&hs=z7h&affdom=5566.net&start=40&sa=N",
-"http://www.phpmyvisites.net/phpmv2/index.php?site=1&date=2007-03-24&period=1&mod=view_visits",
-"http://www.phpmyvisites.net/phpmv2/index.php?site=1&date=2007-03-24&period=1&mod=view_pages",
-"http://membres.lycos.fr/ecrausaz/?",
-"http://www.commentcamarche.net/forum/affich-1081477-adresse-ip-visiteur",
-"http://www.phpmyvisites.net/forums/index.php/t/3252/0/",
-"http://www.phpmyvisites.net/documentation/Accueil",
-"http://www.phpmyvisites.net/telechargements.html",
-"http://www.phpmyvisites.net/",
-"http://www.framasoft.net/article2101.html",
-"http://www.framasoft.net/article2101.html",
-"http://www.phpmyvisites.net/",
-"http://www.phpmyvisites.net/telechargements.html",
-"http://www.phpmyvisites.net/documentation/Accueil",
-"http://www.phpmyvisites.net/documentation/Accueil",
-"http://www.phpmyvisites.net/telechargements.html",
-"http://www.phpmyvisites.net/",
-"http://www.framasoft.net/article2101.html",
-"http://www.lust-and-cross.com/",
-"http://frank.albrecht.free.fr/gestclasse_v7/index.php?page=accueil",
-"http://www.tendanceouest.com/radiolive.htm",
-"http://www.delfiweb.com/v2/",
-"http://www.pieces-auto-export.com/casse_auto_Aunis.php",
-"http://www.lavillat.com/news.php",
-"http://diskuse.jakpsatweb.cz/index.php?action=vthread&forum=13&topic=24403",
-"http://forums.wifeo.com/viewtopic.php?t=4997",
-"http://www.webmaster-experience.net/",
-"http://www.malta.poznan.pl/",
-"http://www.controlcomp.eu/webstat/demo",
-"http://www.google.fr/search?sourceid=navclient-ff&ie=UTF-8&rls=GGGL,GGGL:2006-22,GGGL:fr&q=lettre pour logo",
-"http://www.google.fr/search?hl=fr&q=phpmyvisites&meta=",
-"http://www.linuxorable.fr/croquerrant/phpmyvisit/phpmyvisites.php",
-"http://www.google.fr/search?hl=fr&rls=GGIH,GGIH:2007-02,GGIH:fr&q=related:www.tele2.fr/",
-"http://www.lapalousey.com/agence_cav4.php?select=3&n=3",
-"http://www.lapalousey.com/agence_cav2.php?select=3&n=3&cat=1",
-"http://perso.orange.fr/amp-racing/cadre/contenu.htm",
-"http://www.google.fr/custom?q=fonctionnement de debug&hl=fr&oe=ISO-8859-1&client=pub-3703351194586770&channel=1361273120&cof=FORID:1%3BGL:1%3BLBGC:336699%3BLC:%230000ff%3BVLC:%23663399%3BGFNT:%230000ff%3BGIMP:%230000ff%3BDIV:%23336699%3B&domains=french.ircfast.com&start=20&sa=N",
-"http://www.mycodes.net/soft/6536.htm",
-"http://www.kolucci.ru/",
-"http://www.google.fr/search?hl=fr&q=outil stats php mysql &meta=",
-"http://www.phpmyvisites.net/",
-"http://search.ke.voila.fr/S/orange?rtype=kw&profil=orange&bhv=web_fr&kw= &rdata=dictionnaire gratuit",
-"http://www.google.fr/search?hl=fr&q=demo&btnG=Recherche Google&meta=",
-"http://www.google.fr/search?hl=fr&q=demo&btnG=Recherche Google&meta=",
-"http://aqua.lorca.free.fr/poissons.php3",
-"http://www.phpmyvisites.net/forums/index.php/t/2593/0/",
-"http://www.controlcomp.eu/webstat/demo",
-"http://www.dhammadana.org/dhamma/3_caracteristiques.htm",
-"http://www.phpmyvisites.us/",
-"http://aj.garcia.free.fr/index10.htm",
-"http://www.hotel-post-nesselwang.de/inh_home.htm",
-"http://www.sex974.com/videocochon.php",
-"http://www.siteporno.be/stats/index.php?mod=login",
-"http://www.rouen.fr/vousetes/touriste",
-"http://www.phpmyvisites.net/",
-"http://www.google.fr/search?hl=fr&q=phpMyVisites&btnG=Rechercher&meta=cr%3DcountryFR",
-"http://cgpa64.free.fr/bdd/base.php",
-"http://www.google.fr/search?hl=fr&sa=X&oi=spell&resnum=0&ct=result&cd=1&q=cr%C3%A9er un logiciel de jeu entierement gratuit&spell=1",
-"http://delmotte.brice.free.fr/heol/maisonautonome/electricite.php",
-"http://www.google.fr/search?q=oscommerce&hl=fr&lr=lang_fr&start=40&sa=N",
-"http://xcell05.free.fr/pages/divers/index.html",
-"http://www.google.it/search?hl=it&client=firefox-a&channel=s&rls=org.mozilla%3Ait%3Aofficial&hs=fSj&q=phpmyvisits&btnG=Cerca&meta=",
-"http://www.balsa-composites.com/",
-"http://msdgmedia.free.fr/Multimedia/Ge_FeuilleVolante/FeuilleVolanteComplet.htm",
-"http://www.starclubbing.com/component/option,com_zoom/Itemid,31/",
-"http://www.futureadvertising.net/",
-"http://www.google.fr/search?hl=fr&q=logiciel libre cr%C3%A9ation site web &meta=",
-"http://www.phpmyvisites.net/",
-"http://www.phpmyvisites.net/",
-"http://www.google.fr/search?q=logiciel gratuit&hl=fr&client=firefox-a&channel=s&rls=org.mozilla:fr:official&hs=qxj&start=10&sa=N",
-"http://www.google.fr/search?hl=fr&q=PHP Fatal error%3A Call to undefined function &btnG=Rechercher&meta=",
-"http://www.google.fr/search?client=firefox-a&rls=org.mozilla%3Afr%3Aofficial&channel=s&hl=fr&q=Call to undefined function%3A imagecreatefrompng%28%29 easyphp&meta=&btnG=Recherche Google",
-"http://www.google.fr/search?client=firefox-a&rls=org.mozilla%3Afr%3Aofficial&channel=s&hl=fr&q=Call to undefined function%3A imagecreatefrompng%28%29 easyphp&meta=&btnG=Recherche Google",
-"http://vauv.net/index.php",
-"http://planetenat2.free.fr/apljav/applets_java.htm",
-"http://www.lascholastique.fr/stats/phpmyvisites.php",
-"http://www.google.fr/search?hl=fr&sa=X&oi=spell&resnum=0&ct=result&cd=1&q=traduire en espagnol %22il faut que%22&spell=1",
-"http://www.lessymboles.com/article_maladieschroniques.htm",
-"http://www.phpmyvisites.net/phpmv2/",
-"http://zerod.info/videos/",
-"http://by140fd.bay140.hotmail.msn.com/cgi-bin/getmsg?msg=FD8E5F4E-1F13-4322-AC97-82AB6D74FDB8&mfs=&_HMaction=move&tobox=00000000-0000-0000-0000-000000000002&direction=next&wo=&curmbox=00000000%2d0000%2d0000%2d0000%2d000000000001&a=946d46e12e9c2bbdf47228e3483f2962a4c2c7622e3139d82e3a8f498e6c108f",
-"http://www.google.fr/search?hl=fr&q=documentation logiciel statistique&meta=",
-"http://laville.respublicae.org/eng/thecity.htm",
-"http://www.phpmyvisites.net/etudes-de-cas.html",
-"http://www.phpmyvisites.net/telechargements.html",
-"http://www.phpscripts-fr.net/scripts/scripts.php?cat=Statistiques&deb=10&tri=NOM&sens=ASC",
-"http://www.phpmyvisites.us/",
-"http://www.google.be/search?hl=fr&q=site php my sql gratuit&meta=",
-"http://www.fengshui.antylicho.pl/miejsca-mocy/",
-"http://www.google.fr/search?hl=fr&q=phpmyvisites&btnG=Rechercher&meta=",
-"http://search.ke.voila.fr/S/orange?sev=&rtype=kw&profil=orange&bhv=web_fr&rdata=dictionnaire gratuit",
-"http://toubibs.free.free.fr/index2.php?page=Votre%20ordinateur&menu=Votre%20ordinateur",
-"http://www.google.com/search?client=opera&rls=en&q=open source web analytic&sourceid=opera&ie=utf-8&oe=utf-8",
-"http://fr.google.mozilla.com/search?q=site de telechargement gratuit et rapide&hl=fr&lr=&start=10&sa=N",
-"http://www.google.com/search?sourceid=navclient&hl=fr&ie=UTF-8&rls=SUNA,SUNA:2007-12,SUNA:fr&q=telecharger net stats",
-"http://www.lagratte.net/index.php?error=404",
-"http://www.google.fr/search?q=installer javascript&hl=fr&start=10&sa=N",
-"http://www.educlasse.ch/",
-"http://www.sacaboulons.com/index.php?lng=fr",
-"http://www.google.fr/search?client=firefox-a&rls=org.mozilla%3Afr%3Aofficial&channel=s&hl=fr&q=erreur 500&meta=&btnG=Recherche Google",
-"http://www.frxoops.org/modules/newbb/viewtopic.php?topic_id=20495&forum=12",
-"http://search.free.fr/google.pl",
-"http://mon-evenement.com/annuaire/annuaire_des_prestataires/fiche_prest.php?id_annu_prest=2990&cp=91100&submit=4",
-"http://209.85.129.104/search?q=cache:z-1yaW4CGjAJ:svt.ac-dijon.fr/dyn/article.php3%3Fid_article%3D62 ministere education nationale DP%26D svt coll%C3%A8ge&hl=fr&strip=1",
-"http://tropics-l.nuxit.net/lin%e9/Comming%20Soon%20-%20Lin%e9arts.net.htm",
-"http://localhost/essai/phpmyvisites_2_2/phpmv2/index.php?site=1&date=2007-03-24&period=1&mod=view_visits",
-"http://universsimpson.free.fr/itchyscratchy.php",
-"http://www.google.fr/search?q=php my visit&ie=utf-8&oe=utf-8&rls=org.mozilla:fr:official&client=firefox-a",
-"http://www.google.fr/search?hl=fr&client=firefox-a&channel=s&rls=org.mozilla%3Afr%3Aofficial&hs=Kq5&q=joomla mesure d audience&btnG=Rechercher&meta=",
-"http://sd-4869.dedibox.fr/mariage/index.php?option=com_content&task=category&sectionid=1&id=1&Itemid=5",
-"http://www.phpsecure.info/v2/zone/pComment?d=1093902187",
-"http://www.mon-evenement.com/annuaire/annuaire_des_prestataires/fiche_prest.php?submit=7&id_annu_prest=1017&cp=26790",
-"http://www.phpmyvisites.net/",
-"http://www.cri74.org/docs/web/",
-"http://www.google.fr/search?q=The server encountered an internal error or misconfiguration and was unable to complete your request&ie=utf-8&oe=utf-8&aq=t&rls=org.mozilla:fr:official&client=firefox-a",
-"http://www.phpmyvisites.net/phpmv2/index.php?site=1&date=2007-03-24&period=1&",
-"http://www.phpmyvisites.net/forums/index.php/t/1302/0/",
-"http://www.google.fr/search?q=phpmyvisit&ie=utf-8&oe=utf-8&aq=t&rls=com.ubuntu:fr:official&client=firefox-a",
-"http://weblog.photos.free.fr/dotclear/index.php?General",
-"http://www.webrankinfo.com/forums/viewtopic_45017.htm",
-"http://www.jetelecharge.com/Scripts/530.php",
-"http://www.google.fr/search?hl=fr&q=telecharger logiciel gratuit pour sites pour creation de site web&btnG=Recherche Google&meta=",
-"http://www.roseindia.net/software-technology-news/software-news.jsp?newsid=3503",
-"http://perso.numericable.fr/~penieric/",
-"http://www.google.com/search?hl=fr&q=logiciel de creation de calendrier en php&lr=",
-"http://forum.pctuning.cz/viewforum.php?f=52",
-"http://search.ke.voila.fr/S/voila?profil=voila&bhv=web_fr&rdata=google%20images",
-"http://www.phpmyvisites.net/",
-"http://www.fhs-ecommerce.nl/custom.php",
-"http://www.phpmyvisites.net/forums/index.php/t/1341/0/",
-"http://www.google.fr/search?hl=fr&q=free web&btnG=Rechercher&meta=lr%3Dlang_fr",
-"http://www.google.fr/search?client=firefox-a&rls=org.mozilla%3Afr-FR%3Aofficial&channel=s&hl=fr&q=fput %2B socket&meta=&btnG=Recherche Google",
-"http://www.php-open.com/open191424.htm",
-"http://www.google.fr/custom?hl=fr&ie=ISO-8859-1&oe=ISO-8859-1&client=pub-6180957820147812&cof=FORID%3A1%3BGL%3A1%3BL%3Ahttp%3A%2F%2Fwww.amipclub.com%2Fnavlogo.png%3BLH%3A35%3BLW%3A100%3BLBGC%3A336699%3BLP%3A1%3BLC%3A%230066cc%3BVLC%3A%23663399%3BGFNT%3A%23e1771e%3BGIMP%3A%23e1771e%3BDIV%3A%23336699%3B&q=logiciel cr%E9ation site internet test&meta=",
-"http://aj.garcia.free.fr/index10.htm",
-"http://question.com/What/de/you/want/to/know/my/referer?",
-"http://www.phpmyvisites.net/forums/index.php/t/1302/0/",
-"http://www.phpmyvisites.net/",
-"http://www.adresse-ip.net/adresse-ip-complet2.php",
-"http://www.phpmyvisites.net/",
-"http://www.phpmyvisites.net/fonctionnalites.html",
-"http://controlcomp.eu/webstat/demo",
-"http://www.narodnjaci-mp3.cro-windows-vista.info/-Legende-Slagera-Muzika-grada-mog-2-17-Hej-sta-je-s-vama-ljudi.MP3.php",
-"http://www.narodnjaci-mp3.cro-windows-vista.info/64-Budjenje---Sve-da-hocu.mp3.php",
-"http://saggerboys.com/",
-"http://www.google.fr/search?hl=fr&q=demo&btnG=Recherche Google&meta=",
-"http://www.google.co.ma/search?hl=en&q=creation gratuite de site",
-"http://www.phpscripts-fr.net/scripts/script.php?id=2120",
-"http://www.google.fr/custom?domains=phpmyvisites.net&q=WWW&sa=Recherche&sitesearch=phpmyvisites.net&client=pub-4902541541856011&forid=1&ie=ISO-8859-1&oe=ISO-8859-1&cof=GALT%3A%23008000%3BGL%3A1%3BDIV%3A%23336699%3BVLC%3A663399%3BAH%3Acenter%3BBGC%3AFFFFFF%3BLBGC%3A336699%3BALC%3A0000FF%3BLC%3A0000FF%3BT%3A000000%3BGFNT%3A0000FF%3BGIMP%3A0000FF%3BFORID%3A1%3B&hl=fr",
-"http://www.google.fr/search?hl=fr&q=related:perso.orange.fr/sos.derivesectaire/ARCHIVES%25202003.htm",
-"http://www.webdrole.com/histoire_drole/Sexe_&_cochon/Sexe_&_cochon01.htm",
-"http://www.commentcamarche.net/forum/affich-1081477-adresse-ip-visiteur",
-"http://www.google.fr/search?hl=fr&q=phpmy visites&btnG=Rechercher&meta=",
-"http://7ii7.net/j/",
-"http://www.google.fr/search?hl=fr&q=phpmv2 &btnG=Rechercher&meta=lr%3Dlang_fr",
-"http://aj.garcia.free.fr/index1.htm",
-"http://www.google.com/search?q=phpmyvisites&ie=UTF-8&oe=UTF-8",
-"http://www.google.com/search?hl=fr&sa=X&oi=spell&resnum=0&ct=result&cd=1&q=http://www.phpmyvisites.net&spell=1",
-"http://search.ninemsn.com.au/results.aspx?q=download chinese simplifie&geovar=3025&FORM=REDIR",
-"http://www.google.fr/search?hl=fr&q=ins%C3%A9rer du java&meta=",
-"http://www.revolutionsoundrecords.org/punbb/viewtopic.php?pid=13077",
-"http://rnaud.net/",
-"http://www.google.fr/search?client=firefox-a&rls=org.mozilla%3Afr%3Aofficial&channel=s&hl=fr&q=php my visites&meta=&btnG=Recherche Google",
-"http://www.google.fr/search?hl=fr&q=php my visites&btnG=Recherche Google&meta=",
-"http://www.google.fr/search?q=web statistics open source&ie=utf-8&oe=utf-8&rls=org.debian:en-US:unofficial&client=firefox-a",
-"http://www.google.fr/search?hl=fr&q=phpmyvisites&btnG=Recherche Google&meta=",
-"http://www.phpmyvisites.net/documentation/Accueil",
-"http://www.21andy.com/blog/20050821/11.html",
-"http://www.rouen.fr/breve/3684-carnavaldesenfants",
-"http://www.aolrecherche.aol.fr/aol/search?enc=iso&p=lb&q=DEMO",
-"http://www.phpmyvisites.net/",
-"http://www.google.fr/search?q=maximum execution time&start=0&ie=utf-8&oe=utf-8&client=firefox-a&rls=org.mozilla:fr:official",
-"http://www.phpmyvisites.net/phpmv2/index.php?site=1&date=2007-03-24&period=1&mod=view_source",
-"http://dolycho.free.fr/zenphoto/",
-"http://www.google.fr/search?hl=fr&sa=X&oi=spell&resnum=1&ct=result&cd=1&q=statistiques mots cl%C3%A9s sur Internet &spell=1",
-"http://www.phpmyvisites.net/",
-"http://www.mycodes.net/soft/6536.htm",
-"http://www.joomlafrance.org/8/32.html",
-"http://www.tophost.it/aiuto/cat2/15/63/",
-"http://www.phpmyvisites.us/",
-"http://groups.google.fr/group/developpeur/web/applications-php",
-"http://www.ddrbordeaux.com/Site/Galerie/DDRBordeauxGL05/DDRBordeauxGL05.html",
-"http://www.google.com/search?hl=fr&rls=GGLG,GGLG:2005-45,GGLG:fr&sa=X&oi=spell&resnum=0&ct=result&cd=1&q=logiciel gestion de sites gratuit&spell=1",
-"http://www.raleigh-northcarolina.biz/search/Agriculture.html",
-"http://www.google.com/search?hl=en&q=related:perso.orange.fr/lelogisdantan/",
-"http://www.google.fr/search?q=faire un chmod&ie=utf-8&oe=utf-8&aq=t&rls=org.mozilla:fr:official&client=firefox-a",
-"http://www.forum-marketing.com/-t-1685-0.html",
-"http://mrfou.ath.cx/palune/",
-"http://www.pokerhouse.co.uk/virutal.html",
-"http://www.phpmyvisites.net",
-"http://www.cmsps.cz/vedeni-skoly",
-"http://allez-stade-de-reims.wifeo.com/calendrier.php",
-"http://www.google.fr/search?hl=fr&client=firefox-a&rls=org.mozilla%3Afr%3Aofficial&q=creation d un site web simple et gratuit&btnG=Rechercher&meta=",
-"http://www.google.com/search?hl=fr&q=phpMyVisites 2.2 mise a jour&btnG=Rechercher&lr=",
-"http://linearts.net/forums/index.php?showtopic=1256",
-"http://www.pieces-auto-export.com/autos_occasion_autos_accidentees.php",
-"http://www.google.fr/search?hl=fr&client=firefox-a&rls=org.mozilla:fr:official&hs=aG8&sa=X&oi=spell&resnum=0&ct=result&cd=1&q=compatibilit%C3%A9 php5&spell=1",
-"http://www.mywaysites.info/T4_0_2/index.php?id=132",
-"http://www.planetenergie.org/article.php3?id_article=486",
-"http://binarylook.net/2007/03/kak-prodvigat-open-source/",
-"http://patatorandco.free.fr/?page=liens",
-"http://www.schnouki.net/post/2007/01/15/Plugin-phpMyVisites-pour-DotClear-2-52",
-"http://besttrader.free.fr/pub/Linux_Debian_on_AMILO_Si_1520/index.html",
-"http://www.prepaidlegal.com/",
-"http://www.phpmyvisites.net/fonctionnalites.html",
-"http://babelfish.altavista.com/babelfish/trurl_pagecontent?lp=fr_en&url=http%3A%2F%2Fwww.altersystems.fr%2FProduits-Joomla.Extensions-phpMyVisites.Tracker.html",
-"http://sex-sensuality.com/",
-"http://www.narodnjaci-mp3.cro-windows-vista.info/Narodni-MEGAMIX-2001-ala-Cika-DejOO.php",
-"http://search.ke.voila.fr/S/orange?rtype=kw&profil=orange&bhv=web_fr&kw= &rdata=english",
-"http://aj.garcia.free.fr/Livret9/PageGardeLivret9.htm",
-"http://www.phpmyvisites.net/forums/index.php/t/1302/0/",
-"http://www.phpmyvisites.us/documentation/Main_Page",
-"http://www.phpmyvisites.net/",
-"http://www.phpmyvisites.net/",
-"http://www.google.fr/search?q=logiciel de creation de site en php&hl=fr",
-"http://fr.search.yahoo.com/search?ei=UTF-8&p=logiciel gratuit&meta=vl%3D&ybs=0&fl=1&vl=&pstart=1&fr=slv7-&b=21",
-"http://www.phpmyvisites.net/forums/index.php/t/1727/0/",
-"http://www.phpmyvisites.net/?_RW_=http%3A%2F%2Fwww.ladsdate.net%2F|onclick|L0",
-"http://www.rochebuffere.com/",
-"http://www.google.com/search?sourceid=navclient&ie=UTF-8&rls=RNWE,RNWE:2004-53,RNWE:en&q=statistiques recherches internet",
-"http://www.google.fr/search?hl=fr&q=stats sites &meta=",
-"http://www.google.fr/search?hl=fr&q=phpmyvisites&btnG=Recherche Google&meta=",
-"http://theglu.tuxfamily.org/index.php/post/2007/01/05/Aidez-la-recherche-avec-les-resources-inutilisees-de-votre-pc-boinc-world-community-grid-fightaids",
-"http://www.phpmyvisites.net/?_RW_=http%3A%2F%2Fwww.paysage-photo.ch%2F|onclick|L7",
-"http://autoimage.autoweb.cz/audi/index.htm",
-"http://www.easy-script.com/script.php?c=php&sc=stat&ord=click",
-"http://www.google.fr/search?hl=fr&q=configurer le temp d%27un cookie &meta=",
-"http://www.google.fr/search?hl=fr&q=lettre de augmentation graduit&btnG=Recherche Google&meta=",
-"http://etablissements.ac-amiens.fr/0601188r/ecrire/?exec=admin_plugin",
-"http://www.phpscripts-fr.net/scripts/derniers.php",
-"http://universsimpson.free.fr/itchyscratchy.php",
-"http://www.phpbank.net/description.php?id=1270",
-"http://www.forzamotorsport2.fr/recherche/google-demo.html",
-"http://www.apprendre-en-ligne.net/blog/index.php",
-"http://www.google.fr/search?q=comparaison google analytics et xiti&sourceid=navclient-ff&ie=UTF-8&rlz=1B3GGGL_frFR210FR210",
-"http://www.google.fr/search?hl=fr&q=demo&btnG=Recherche Google&meta=",
-"http://www.skunk.powa.fr/shadow/login.php",
-"http://www.phpscripts-fr.net/scripts/scripts.php?cat=Statistiques&deb=10&tri=NOM&sens=ASC",
-"http://216.239.59.104/search?q=cache:-TzFlx2Y6p8J:www.scienceetviejunior.fr/svj.php%3FrubriqueSvj%3Dindex-gratuit-article%255Camp%3Bid_article%3D1206 science et vie junior&hl=fr&strip=1",
-"http://www.google.fr/search?sourceid=navclient-ff&ie=UTF-8&rls=GGGL,GGGL:2006-39,GGGL:fr&q=phpmyvisites",
-"http://www.phpmyvisites.net/",
-"http://www.phpmyvisites.net/",
-"http://www.duplication-video.com/supports-video.html",
-"http://www.google.fr/search?sourceid=navclient&aq=t&hl=fr&ie=UTF-8&rlz=1T4GFRG_frMA215MA215&q=t%c3%a9l%c3%a9charger logiciel nintendo ds",
-"http://www.google.fr/search?sourceid=navclient&aq=t&hl=fr&ie=UTF-8&rls=GGLG,GGLG:2005-39,GGLG:fr&q=phpmyvisits",
-"http://www.idbleues.com/catalogue-materiel.php",
-"http://dadoun.net/",
-"http://rcma.free.fr/escort/2004.htm",
-"http://www.google.ca/search?hl=fr&q=stats site web&btnG=Rechercher&meta=",
-"http://www.google.fr/search?hl=fr&rlz=1T4ADBR_frFR212FR212&sa=X&oi=spell&resnum=0&ct=result&cd=1&q=phpmyvisites&spell=1",
-"http://cmkh.net/?q=user/1",
-"http://www.souvenirducameroun.com/productssimple.html",
-"http://www.epochtimes.com.ua/",
-"http://www.google.fr/search?hl=fr&rlz=1T4GFRB_frFR206FR207&sa=X&oi=spell&resnum=0&ct=result&cd=1&q=wiki licence application web&spell=1",
-"http://www.pasdagence.com/",
-"http://www.google.fr/search?hl=fr&q=The server encountered an internal error or misconfiguration and was unable to complete your request.&btnG=Recherche Google&meta=",
-"http://www.gea-erge.fr/",
-"http://www.google.fr/search?hl=fr&q=phpmyvisites&meta=",
-"http://szex.szextra.hu/index.php",
-"http://www.google.fr/search?q=mesure audience site&hl=fr&rls=GGLG,GGLG:2006-10,GGLG:fr&start=10&sa=N",
-"http://akatsuki.kurai.free.fr/site.php",
-"http://tw.search.yahoo.com/search?fr=fp-tab-web-t&ei=UTF-8&p=phpMyVisites",
-"http://www.google.com/search?client=safari&rls=en&q=phpmyvisites&ie=UTF-8&oe=UTF-8",
-"http://www.phpmyvisites.net/telechargements.html",
-"http://www.google.fr/search?hl=fr&rls=GGIC,GGIC:1970--2,GGIC:fr&q=related:www.free.fr/",
-"http://www.google.fr/search?hl=fr&q=related:perso.orange.fr/resistances/lactonlesap/index.htm",
-"http://diskuse.jakpsatweb.cz/index.php?action=vthread&forum=13&topic=24403",
-"http://universsimpson.free.fr/ullmanspage.php",
-"http://www.google.fr/search?hl=fr&q=demande emploi mise %C3%A0 jour site internet&btnG=Rechercher&meta=lr%3Dlang_fr",
-"http://www.juggletube.com/",
-"http://www.google.com/search?hl=fr&client=safari&rls=fr&q=statistique internet gratuit&btnG=Rechercher&lr=",
-"http://www.google.com/search?q=www.free.fr coppermine &rls=com.microsoft:fr:IE-SearchBox&ie=UTF-8&oe=UTF-8&sourceid=ie7&rlz=1I7SKPB",
-"http://www.phpmyvisites.net/telechargements.html",
-"http://www.agilav.fr/DepartementReconditionnement.html",
-"http://www.phpmyvisites.us/",
-"http://www.google.com/search?hl=fr&q=statistiques site&lr=lang_fr",
-"http://www.librairie-portugaise.com/",
-"http://www.raleigh-northcarolina.biz/search/Slippage.html",
-"http://blog-perso.onzeweb.info/2006/05/06/wordpress-phpmyvisites-10/",
-"http://starclubbing.com/",
-"http://www.gastonspectacles.com/?gclid=COve_eGmkIsCFQIvlAodV2mvSQ",
-"http://www.phpmyvisites.net/forums/index.php/t/2677/0/",
-"http://www.google.com/search?client=safari&rls=fr&q=phpmyvisites&ie=UTF-8&oe=UTF-8",
-"http://search.ke.voila.fr/S/orange?rtype=kw&profil=smart&bhv=web_fr&rdata=GOOGLE&logid=2354200001174838174938809&keap=28&prevnbans=10&ap=4",
-"http://universsimpson.free.fr/ullmanspage.php",
-"http://iut-rcc.univ-reims.fr/accueil.php?menu=5&lang=fr",
-"http://www.industriespionage.net/main/?page_id=4",
-"http://www.ethicall-telecom.fr/ect_webcount/",
-"http://www.google.co.ma/search?hl=fr&q=creer un sites web gratuit&meta=",
-"http://www.phpmyvisites.net/forums/index.php?t=rview&goto=13676",
-"http://www.google.com/search?client=opera&rls=en&q=phpmyvisites&sourceid=opera&ie=utf-8&oe=utf-8",
-"http://127.0.0.1/www.info-distrib.fr/?sct=liste&url=carte_mere.htm",
-"http://www.google.ch/search?hl=fr&client=firefox-a&rls=org.mozilla%3Afr%3Aofficial&hs=6Y&q=statistiques web&btnG=Rechercher&meta=",
-"http://www.google.fr/search?sourceid=navclient&aq=t&hl=fr&ie=UTF-8&rls=GFRD,GFRD:2007-09,GFRD:fr&q=phpmyvisits",
-"http://www.nuitpourpre.net/leblog/index.php/?q=",
-"http://www.sex974.com/goodies.php",
-"http://beet.ddl.free.fr/index.php?id=05",
-"http://sex974.com/abonnement.php",
-"http://www.revolunet.com/sites.utiles.asp?Toutes-Statistiques%20PHP/MySQL",
-"http://www.phpmyvisites.net/",
-"http://www.opensourcescripts.com/dir/PHP/Web_Traffic_Analysis/297.html",
-"http://www.google.com/search?sourceid=gmail&q=phpmyvisites",
-"http://www.google.es/search?hl=es&q=download simsun.ttc&btnG=B%C3%BAsqueda&meta=",
-"http://www.raleigh-northcarolina.biz/search/May.html",
-"http://cm5.free.fr/index.htm",
-"http://www.google.fr/search?hl=fr&client=firefox-a&rls=org.mozilla%3Afr%3Aofficial&hs=ps&q=php my stat&btnG=Rechercher&meta=",
-"http://www.gsm-wifi.net/index.php?option=com_frontpage&Itemid=1",
-"http://search.msn.fr/results.aspx?q=logiciel gratuit&FORM=MSN6B&lang=fr-fr&cp=1252",
-"http://www.google.fr/search?hl=fr&client=firefox-a&rls=org.mozilla%3Afr%3Aofficial&hs=fJq&q=stats phpmyvisite&btnG=Rechercher&meta=",
-"http://www.google.com/search?client=safari&rls=fr-fr&q=php statistics&ie=UTF-8&oe=UTF-8",
-"http://www.google.com/search?hl=fr&q=d%C3%A9mo&btnG=Recherche Google&lr=",
-"http://ebw2.be/Saint-Joseph_Tubize/STJoseph.html",
-"http://www.phpmyvisites.net/phpmv2/",
-"http://www.google.fr/search?hl=fr&client=firefox-a&rls=org.mozilla%3Afr%3Aofficial&hs=aNq&q=php typer les m%C3%A9thodes int string&btnG=Rechercher&meta=",
-"http://www.google.com/search?client=opera&rls=en&q=phpmyvisites&sourceid=opera&ie=utf-8&oe=utf-8",
-"http://www.phpmyvisites.net/telechargements.html",
-"http://www.castelpourpre.com/maison.html",
-"http://www.castelpourpre.com/maison.html",
-"http://www.google.fr/search?client=firefox-a&rls=org.mozilla%3Afr%3Aofficial&channel=s&hl=fr&q=phpmv2&meta=&btnG=Recherche Google",
-"http://www.google.fr/search?q=SCRIPT STATISTIQUE&hl=fr&pwst=1&start=10&sa=N",
-"http://www.antennereunion.fr/rubrique.php3?id_rubrique=41&debut_page=432",
-"http://www.phpmyvisites.net/",
-"http://www.0-8.biz/",
-"http://www.kess.snug.pl/",
-"http://www.google.ch/search?q=statistiques gratuites site web&start=0&ie=utf-8&oe=utf-8&client=firefox-a&rls=org.mozilla:fr:official",
-"http://www.google.fr/search?hl=fr&q=tout les site gratuit logiciel&btnG=Recherche Google&meta=",
-"http://www.phpmyvisites.us/",
-"http://www.google.fr/search?client=firefox-a&rls=org.mozilla%3Afr%3Aofficial&channel=s&hl=fr&q=phpmyvisites&meta=&btnG=Recherche Google",
-"http://www.animal-virtuel.com/stats/phpmyvisites.php",
-"http://www.fruits-basket-temple.com/index.php?section=anime",
-"http://www.google.fr/search?hl=fr&q=phpmyvisites&meta=",
-"http://www.google.fr/search?hl=fr&q=phpmyvisites&btnG=Recherche Google&meta=",
-"http://www.pilarcanalda.com/inici/index.php",
-"http://www.phpmyvisites.net/telechargements.html",
-"http://www.google.com/search?hl=fr&q=phpmyvisites&btnG=Recherche Google&lr=",
-"http://www.phpmyvisites.us/",
-"http://www.phpmyvisites.net/",
-"http://www.phpmyvisites.net/",
-"http://www.google.com/search?hl=fr&q=PhpMyVisit&btnG=Rechercher&lr=lang_fr",
-"http://info-afrique.be/",
-"http://www.jazzentete.com/",
-"http://www.phpmyvisites.net/?_RW_=http%3A%2F%2Fwww.annuaire-telephone-portable.com%2Fsat%2Fdetection.php|onclick|L0",
-"http://www.phpmyvisites.net/forums/index.php/t/2613/0/",
-"http://www.google.fr/search?hl=fr&q=logiciel gratuit open source&meta=",
-"http://www.phpmyvisites.us/",
-"http://spiritangeldesign.free.fr/index.php?p=credit",
-"http://generation1.free.fr/rubriques.htm",
-"http://www.google.fr/search?hl=fr&q=outil informatique et statistique&btnG=Recherche Google&meta=",
-"http://www.commentcamarche.net/forum/affich-2802486-hebergement-et-statistiques-de-visites",
-"http://www.google.be/search?q=phpmyvisites&ie=utf-8&oe=utf-8&aq=t&rls=org.mozilla:fr:official&client=firefox-a",
-"http://www.google.fr/search?client=firefox-a&rls=org.mozilla%3Afr%3Aofficial&channel=s&hl=fr&q=phpmyvisites&meta=&btnG=Recherche Google",
-"http://www.phpmyvisites.net/forums/index.php/t/1497/0/",
-"http://www.nili.be/",
-"http://www.google.com/search?hl=fr&client=safari&rls=fr&q=statistiques php&btnG=Rechercher&lr=",
-"http://www.parisrandovelo.com/forum/viewtopic.php?t=605&start=15",
-"http://www.google.fr/search?hl=fr&q=demo&btnG=Recherche Google&meta=cr%3DcountryFR",
-"http://natation.privas.dyndns.org/modules/intro_cnp/",
-"http://www.phpmyvisites.net/",
-"http://www.digigasin.ch/product_info.php?products_id=2214&osCsid=70959f3746c784495a5032cbb79dbc3d",
-"http://msdgmedia.free.fr/Multimedia/DessinerPlume/index.htm",
-"http://msdgmedia.free.fr/Multimedia/DessinerPlume/index.htm",
-"http://fr.ask.com/web?q=gratuit&l=dir&o=1124",
-"http://www.google.fr/search?hl=fr&client=firefox-a&channel=s&rls=org.mozilla%3Afr%3Aofficial&hs=r2q&q=fichier contenant les sites visit%C3%A9s&btnG=Rechercher&meta=",
-"http://www.lorajos.nl/",
-"http://www.rugby13montpellier.com/shop.php",
-"http://www.beautediscount.com/",
-"http://www.google.fr/search?hl=fr&client=firefox-a&channel=s&rls=org.mozilla%3Afr%3Aofficial&q=php site web&btnG=Rechercher&meta=",
-"http://www.forum-newbeetle.fr/",
-"http://france.catsfamily.net/main/coupsdecoeur.html",
-"http://www.google.fr/search?hl=fr&q=phpmyvisites&btnG=Recherche Google&meta=",
-"http://www.phpscripts-fr.net/scripts/derniers.php",
-"http://generation1.free.fr",
-"http://www.google.fr/search?hl=fr&client=firefox-a&rls=org.mozilla%3Afr%3Aofficial&hs=kwB&q=free statistiques&btnG=Rechercher&meta=cr%3DcountryFR",
-"http://www.google.fr/search?hl=fr&q=tout les site gratuit logiciel&btnG=Recherche Google&meta=",
-"http://forum.tvsport.ro//index.php?s=d2589da3f1f7173e22d695934e8fe0f4&act=Forward&f=92&t=2053",
-"http://www.google.fr/search?hl=fr&q=creation site libre OR open source&btnG=Rechercher&meta=",
-"http://www.phpmyvisites.net/forums/index.php/t/1302/0/",
-"http://www.google.fr/search?q=unable open&ie=utf-8&oe=utf-8&aq=t&rls=org.mozilla:fr:official&client=firefox-a",
-"http://www.google.fr/search?hl=fr&q=statistiques sites&meta=",
-"http://www.phpmyvisites.us/requirements.html",
-"http://www.phpmyvisites.us/",
-"http://www.satellitemania.it/",
-"http://www.google.com.tr/search?hl=tr&q=phpmyvisites&meta=",
-"http://www.phpmyvisites.us/",
-"http://www.google.fr/search?client=firefox-a&rls=org.mozilla%3Afr%3Aofficial&channel=s&hl=fr&q=d%C3%A9mo &meta=&btnG=Recherche Google",
-"http://www.google.fr/search?sourceid=navclient&hl=fr&ie=UTF-8&rlz=1T4GGIC_frFR215&q=demo",
-"http://www.amnestyinternational.be/shopping/page_101.php",
-"http://www.google.fr/search?hl=fr&q=phpmv2&meta=",
-"http://www.google.fr/custom?hl=fr&ie=ISO-8859-1&oe=ISO-8859-1&client=pub-4902541541856011&cof=FORID%3A1%3BGL%3A1%3BLBGC%3A336699%3BLC%3A%230000ff%3BVLC%3A%23663399%3BGFNT%3A%230000ff%3BGIMP%3A%230000ff%3BDIV%3A%23336699%3B&domains=phpmyvisites.net&q=installation&btnG=Rechercher&sitesearch=phpmyvisites.net&meta=",
-"http://www.phpmyvisites.net/",
-"http://www.google.co.ma/search?hl=fr&q=related:search1-1.free.fr/",
-"http://www.google.co.ma/search?hl=fr&q=related:search1-1.free.fr/",
-"http://www.szextra.hu/hir/?id=201&r=5",
-"http://www.google.fr/search?hl=fr&ned=&q=type de serveur utilis%C3%A9 par free&btnmeta%3Dsearch%3Dsearch=Rechercher sur le Web",
-"http://www.canner-evasion.com/",
-"http://universsimpson.free.fr/itchyscratchy.php",
-"http://googeli.dynalias.com/",
-"http://aj.garcia.free.fr/index10.htm",
-"http://www.google.fr/search?sourceid=navclient&hl=fr&ie=UTF-8&rls=GGIH,GGIH:2006-51,GGIH:fr&q=d%c3%a9mo",
-"http://www.le-phoenix.fr/",
-"http://www.bmcharmilles.fr/fenetres.php?menu=3",
-"http://www.nass-collection.com/visite/index.php?site=1&date=2007-03-24&period=1&mod=view_referers",
-"http://www.neutrinium238.com/tutoriaux/photoshop/index.php?id=3",
-"http://www.phpmyvisites.net/",
-"http://www.annees-laser.com/Page/Boutique/Boutique.aspx",
-"http://www.wifeo.com/membre-actualite.php?article=32-phpmyvisites--statistiques-gratuite",
-"http://www.magalieforever.com/videos/clips.html",
-"http://192.168.1.1/~bureau3/Musica/Musiques.php",
-"http://www.phpmyvisites.us/",
-"http://www.antigone-net.net/index.php?option=com_content&task=section&id=5&Itemid=79",
-"http://www.gonthier-be.com/qui.htm",
-"http://www.deosjuggling.fr/",
-"http://www.google.fr/search?hl=fr&q=communaute de pratique open source&btnG=Rechercher&meta=",
-"http://www.google.com/search?client=safari&rls=fr&q=phpmyvisites&ie=UTF-8&oe=UTF-8",
-"http://www.sex974.com/freetour.php?q=solo",
-"http://blog-perso.onzeweb.info/developpement/wp-phpmyvisites",
-"http://www.google.fr/search?hl=fr&q=related:perso.orange.fr/laurent.cleon/",
-"http://www.google.be/search?q=les sites web les plus visit%C3%A9s&hl=fr&rls=SKPB,SKPB:2006-40,SKPB:fr&start=20&sa=N",
-"http://tourdumonde.cochisette.com/index2.php",
-"http://www.lespaladins.com/fr_accueil.php",
-"http://diskuse.jakpsatweb.cz/index.php?action=vthread&forum=13&topic=24403",
-"http://www.google.fr/search?hl=fr&q=getthunderbird.com&btnG=Rechercher&meta=cr%3DcountryFR",
-"http://www.google.com/search?sourceid=navclient&ie=UTF-8&rls=RNWE,RNWE:2004-16,RNWE:en&q=phpmyvisites",
-"http://www.google.fr/search?hl=fr&q=php statistiques&btnG=Recherche Google&meta=",
-"http://www.phpmyvisites.net/forums/index.php/m/15653/0/?srch=mot de passe",
-"http://www.phpmyvisites.us/",
-"http://www.tendanceouest.com/radiolive.htm",
-"http://www.puget-passion.fr/Champignon/lamorille.htm",
-"http://www.google.com/search?client=safari&rls=fr-fr&q=phpmyvisites&ie=UTF-8&oe=UTF-8",
-"http://smmobadix.free.fr/index.php?",
-"http://aide-a-la-navigation.orange.fr/process?key=0019f5a5de969bfa7df5c354e6fa71e7cac",
-"http://www.swalif.net/softs/showthread.php?t=146114",
-"http://fr.search.yahoo.com/search?ei=UTF-8&p=google&meta=vl%3D&ybs=0&fl=1&vl=&pstart=1&fr=logout&b=61",
-"http://www.google.fr/search?hl=fr&client=firefox-a&rls=org.mozilla%3Afr%3Aofficial&hs=9GD&q=phpmyvisites&btnG=Rechercher&meta=",
-"http://www.google.fr/search?hl=fr&client=firefox-a&channel=s&rls=org.mozilla%3Afr%3Aofficial&hs=nds&q=Unable to open &btnG=Rechercher&meta=",
-"http://search.live.com/results.aspx?q=logiciel gratuit&mkt=fr-fr&FORM=LIVSOP&go.x=0&go.y=6",
-"http://www.furia-metal.com/",
-"http://www.posicionanet.com/garantias.html",
-"http://sos.primavista.net/Mail-Senden.93.0.html",
-"http://www.poeta.cz/",
-"http://diskuse.jakpsatweb.cz/index.php?action=vthread&forum=13&topic=24403",
-"http://localhost/",
-"http://www.google.fr/search?q=phpmyvisits&sourceid=navclient-ff&ie=UTF-8&rlz=1B2GGGL_frFR207FR207",
-"http://www.google.com/search?q=php nuke tracker&rls=com.microsoft:fr-ca&ie=UTF-8&oe=UTF-8&startIndex=&startPage=1",
-"http://www.stumbleupon.com/refer.php?url=http%3A%2F%2Fwww.phpmyvisites.net%2F",
-"http://www.lenautilus.net/nautilusgb/galerie.html",
-"http://www.google.fr/search?hl=fr&q=logiciel visite site internet&meta=lr%3Dlang_fr",
-"http://universsimpson.free.fr/ullmanspage.php",
-"http://www.google.fr/search?hl=fr&rlz=1T4GFRG_frFR212FR212&sa=X&oi=spell&resnum=0&ct=result&cd=1&q=h%C3%A9bergement sur free&spell=1",
-"http://www.google.com/search?hl=en&safe=off&client=firefox-a&rls=org.mozilla:en-US:official&hs=SOY&sa=X&oi=spell&resnum=0&ct=result&cd=1&q=phpmyvisites&spell=1",
-"http://lesemouvus.jeun.fr/index.htm?sid=ea0882e54624b43fa556e463c5ad299f",
-"http://www.google.fr/search?sourceid=navclient&ie=UTF-8&rlz=1T4GGLJ_enBE215BE215&q=DEMO",
-"http://82.225.141.143/",
-"http://www.google.fr/search?hl=fr&q=DEMO&meta=",
-"http://www.phpmyvisites.net/telechargements.html",
-"http://www.phpmyvisites.net/forums/index.php/f/15/0/",
-"http://www.scat-hell.com/",
-"http://flouz.info/",
-"http://krimhlab.free.fr/index.php?main=gallerie&menu_h=menuhga",
-"http://www.lordphoenix.info/logiciels/",
-"http://www.phpmyvisites.net/?_RW_=http%3A%2F%2Fwww.saxy.fr%2F|onclick|L11",
-"http://www.commecadujapon.com/php/photo.php?photofile=20060110.1300.1.jpg&titre=Shinseijin - nouvelle adulte",
-"http://www.jeffroy.eu/index2.php",
-"http://forum.spip.org/fr_174961.html?var_recherche=statistiques",
-"http://127.0.0.1/",
-"http://www.google.de/search?q=phpmyvisites&ie=utf-8&oe=utf-8&aq=t&rls=org.mozilla:de:official&client=firefox-a",
-"http://www.phpmyvisites.us/",
-"http://www.google.fr/search?q=cr%C3%A9er facilement un site web en php&ie=utf-8&oe=utf-8&aq=t&rls=org.mozilla:fr:official&client=firefox-a",
-"http://www.phpmyvisites.net/?_RW_=http%3A%2F%2Fwww.diskutime.com%2Fdisk%2Fkerkopostime.php%3Fanetari%3DBlici%23bottom|onclick|L128",
-"http://www.phpmyvisites.net/documentation/index.php?title=Configuration&oldid=1550",
-"http://www.google.fr/custom?domains=http%3A%2F%2Fwww.autourdecheznous.info&q=ring bourguesan ffb&sa=Recherche Google&sitesearch=&client=pub-6772093135347263&forid=1&ie=ISO-8859-1&oe=ISO-8859-1&cof=GALT%3A%23008000%3BGL%3A1%3BDIV%3A%23E6E6E6%3BVLC%3A663399%3BAH%3Acenter%3BBGC%3AFFFFFF%3BLBGC%3A336699%3BALC%3A0000FF%3BLC%3A0000FF%3BT%3A000000%3BGFNT%3A0000FF%3BGIMP%3A0000FF%3BFORID%3A11&hl=fr&ad=w9&num=10",
-"http://www.commentcamarche.net/forum/affich-2802486-hebergement-et-statistiques-de-visites",
-"http://www.archives.rennes.fr/fonds/affichedetailfig.php?cot=100Fi378",
-"http://www.pechemouchecorse.com/phpBB2-fr/search.php",
-"http://www.autooptions.fr/catalogue_viewprod_1360_0_9_0_0.html",
-"http://www.nalao.com/",
-"http://www.mandrivalinux-online.eu/phpmv2/index.php?site=1&date=2007-03-25&period=1&mod=view_referers",
-"http://www.google.be/search?hl=fr&q=statistiques web phpmyvisites&btnG=Rechercher&meta=",
-"http://fr.search.yahoo.com/search?p=t%C3%A9l%C3%A9charger cv gratuit&rs=1&fr2=rs-top&ei=UTF-8&meta=vl%3D&ybs=0&fl=1&vl=&fr=yfp-t-501",
-"http://www.arlon-is-on.be/",
-"http://www.google.fr/search?hl=fr&q=t%C3%A9l%C3%A9charger gratuit de logiciel de cr%C3%A9ation de site internet en php&meta=",
-"http://www.malta.poznan.pl/",
-"http://www.google.fr/search?hl=fr&q=phpmyvisits",
-"http://www.phpmyvisites.us/",
-"http://www.phpmyvisites.us/",
-"http://www.mfhg.org/showmedia.php?mediaID=82",
-"http://www.google.fr/search?q=phpmyvisites&ie=utf-8&oe=utf-8&aq=t&rls=org.mozilla:fr:official&client=firefox-a",
-"http://www.animule.net/php/commentaires.php?id=90",
-"http://www.google.fr/search?q=Fatal error%3A Call to undefined function%3A&ie=utf-8&oe=utf-8&aq=t&rls=org.mozilla:fr:official&client=firefox-a",
-"http://www.google.fr/custom?hl=fr&ie=ISO-8859-1&oe=ISO-8859-1&client=pub-4902541541856011&cof=FORID%3A1%3BGL%3A1%3BLBGC%3A336699%3BLC%3A%230000ff%3BVLC%3A%23663399%3BGFNT%3A%230000ff%3BGIMP%3A%230000ff%3BDIV%3A%23336699%3B&domains=phpmyvisites.net&q=traduction&btnG=Rechercher&sitesearch=phpmyvisites.net&meta=lr%3Dlang_fr",
-"http://www.webrankinfo.com/outils/echanges-de-liens.php?rub=res",
-"http://www.google.fr/search?q=web analyse php&ie=utf-8&oe=utf-8&aq=t&rls=org.mozilla:fr:official&client=firefox-a",
-"http://www.donuts-models.com/pages/elite_pro.html",
-"http://www.google.fr/search?hl=fr&q=fichier traduction php&meta=",
-"http://www.google.ch/search?hl=fr&q=website statistique open source&btnG=Recherche Google&meta=",
-"http://www.saxy.fr/",
-"http://search.ke.voila.fr/S/orange?sev=&rtype=kw&profil=deskbar_ora_h&bhv=web_fr&rdata=teste",
-"http://www.rendy.eu/odkazy/",
-"http://homeomath.imingo.net/annales_bacsti.htm",
-"http://www.google.fr/search?hl=fr&client=firefox-a&rls=org.mozilla%3Afr%3Aofficial&hs=F7Z&q=imagecreatefrompng gd&btnG=Rechercher&meta=",
-"http://www.google.fr/search?client=firefox-a&rls=org.mozilla%3Afr%3Aofficial&channel=s&hl=fr&q=phpmyvisites&meta=&btnG=Recherche Google",
-"http://www.jeremysumpter.info/view.php?lang=e&flag=5&page=pp-cp&num=1",
-"http://events.idi.ntnu.no/mrc2007/organisation.php",
-"http://www.google.fr/search?q=modifier droit utilisateur mysql&hl=fr&start=20&sa=N",
-"http://streaming.bpi.fr/bpi-visites/catalogue/phpmyvisites.php",
-"http://www.forum-newbeetle.fr/recent.php",
-"http://www.captainnelson.com/archives/89",
-"http://insousciance.expose.free.fr/decidela/index.php",
-"http://www.google.fr/search?hl=fr&q=phpmyvisites&meta=",
-"http://www.google.fr/search?hl=fr&q=guide de communaute arabe open source &btnG=Recherche Google&meta=",
-"http://donbass.free.fr/radio/profile.php?id=210",
-"http://www.psn3.com/Cerisier,Evans/fiche.html",
-"http://aide-a-la-navigation.orange.fr/process?key=002e98505757dcabd69a8a215dfe57cf9c6",
-"http://search.ke.voila.fr/S/orange?rtype=kw&profil=smart&bhv=web_fr&kw= &rdata=t%E9l%E9chargements",
-"http://www.epochtimes.ru/",
-"http://www.poterie-bois.com/petits animaux/chats",
-"http://forum.hardware.fr/hfr/WindowsSoftware/ajout-compteur-site-sujet_172698_1.htm",
-"http://www.gougueule.com/Spongestats",
- );
diff --git a/misc/generateVisitsData/UserAgent.php b/misc/generateVisitsData/UserAgent.php
deleted file mode 100644
index 433e74bcf3..0000000000
--- a/misc/generateVisitsData/UserAgent.php
+++ /dev/null
@@ -1,53 +0,0 @@
-<?php
-$userAgent = array(
-"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)",
-"Mozilla/4.0 (compatible; MSIE 5.5; Windows NT 5.0 )",
-"Mozilla/4.0 (compatible; MSIE 5.5; Windows 98; Win 9x 4.90)",
-"Mozilla/4.8 [en] (Windows NT 5.1; U)",
-"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; en) Opera 8.0",
-"Opera/7.51 (Windows NT 5.1; U) [en]",
-"Opera/7.50 (Windows XP; U)",
-"Avant Browser/1.2.789rel1 (http://www.avantbrowser.com)",
-"Mozilla/5.0 (Windows; U; Win98; en-US; rv:1.4) Gecko Netscape/7.1 (ax)",
-"Mozilla/5.0 (Windows; U; Windows XP) Gecko MultiZilla/1.6.1.0a",
-"Opera/7.50 (Windows ME; U) [en]",
-"Mozilla/3.01Gold (Win95; I)",
-"Mozilla/2.02E (Win95; U)",
-"Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)",
-"Googlebot/2.1 (+http://www.googlebot.com/bot.html)",
-"msnbot/1.0 (+http://search.msn.com/msnbot.htm)",
-"msnbot/0.11 (+http://search.msn.com/msnbot.htm)",
-"Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)",
-"Mozilla/2.0 (compatible; Ask Jeeves/Teoma)",
-"Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en) AppleWebKit/125.2 (KHTML, like Gecko) Safari/125.8",
-"Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en) AppleWebKit/125.2 (KHTML, like Gecko) Safari/85.8",
-"Mozilla/4.0 (compatible; MSIE 5.15; Mac_PowerPC)",
-"Mozilla/5.0 (Macintosh; U; PPC Mac OS X Mach-O; en-US; rv:1.7a) Gecko/20040614 Firefox/0.9.0+",
-"Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-US) AppleWebKit/125.4 (KHTML, like Gecko, Safari) OmniWeb/v563.15",
-"Mozilla/5.0 (X11; U; Linux; i686; en-US; rv:1.6) Gecko Debian/1.6-7",
-"ozilla/5.0 (X11; U; Linux; i686; en-US; rv:1.6) Gecko Epiphany/1.2.5",
-"Mozilla/5.0 (X11; U; Linux i586; en-US; rv:1.7.3) Gecko/20040924 Epiphany/1.4.4 (Ubuntu)",
-"Mozilla/5.0 (X11; U; Linux; i686; en-US; rv:1.6) Gecko Galeon/1.3.14",
-"Konqueror/3.0-rc4; (Konqueror/3.0-rc4; i686 Linux;;datecode)",
-"Mozilla/5.0 (compatible; Konqueror/3.3; Linux 2.6.8-gentoo-r3; X11;",
-"Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.6) Gecko/20040614 Firefox/0.8",
-"ELinks/0.9.3 (textmode; Linux 2.6.9-kanotix-8 i686; 127x41)",
-"ELinks (0.4pre5; Linux 2.6.10-ac7 i686; 80x33)",
-"Links (2.1pre15; Linux 2.4.26 i686; 158x61)",
-"Links/0.9.1 (Linux 2.4.24; i386;)",
-"MSIE (MSIE 6.0; X11; Linux; i686) Opera 7.23",
-"Lynx/2.8.5rel.1 libwww-FM/2.14 SSL-MM/1.4.1 GNUTLS/0.8.12",
-"w3m/0.5.1",
-"Links (2.1pre15; FreeBSD 5.3-RELEASE i386; 196x84)",
-"Mozilla/5.0 (X11; U; FreeBSD; i386; en-US; rv:1.7) Gecko",
-"Mozilla/4.77 [en] (X11; I; IRIX;64 6.5 IP30)",
-"Mozilla/4.8 [en] (X11; U; SunOS; 5.7 sun4u)",
-"Mozilla/3.0 (compatible; NetPositive/2.1.1; BeOS)",
-"Gulper Web Bot 0.2.4 (www.ecsl.cs.sunysb.edu/~maxim/cgi-bin/Link/GulperBot)",
-"EmailWolf 1.00",
-"grub-client-1.5.3; (grub-client-1.5.3; Crawl your own stuff with http://grub.org)",
-"Download Demon/3.5.0.11",
-"OmniWeb/2.7-beta-3 OWF/1.0",
-"SearchExpress",
-"Microsoft URL Control - 6.00.8862",
-);
diff --git a/misc/redirectToUrl.php b/misc/redirectToUrl.php
index c5597aa4c4..4df113fcec 100644
--- a/misc/redirectToUrl.php
+++ b/misc/redirectToUrl.php
@@ -2,7 +2,10 @@
// we redirect to the website instead of linking directly because we don't want
// to expose the referer on the piwik demo
$url = htmlentities($_GET['url']);
-if(!preg_match('~http://(forum\.)?piwik.org(/|$)~', $url)) { die; }
+if(!preg_match('~http://(dev\.|forum\.)?piwik.org(/|$)~', $url)
+&& !in_array($url, array(
+ 'http://blogvertising.pl/',
+))) { die; }
?>
<html><head>
<meta http-equiv="refresh" content="0;url=<?php echo $url; ?>"/>