diff --git a/misc/others/test_cookies_GenerateHundredsWebsitesAndVisits.php b/misc/others/test_cookies_GenerateHundredsWebsitesAndVisits.php
deleted file mode 100644
index b8030333a2232c75adf1883d4906ae22cf9b5b12..0000000000000000000000000000000000000000
--- a/misc/others/test_cookies_GenerateHundredsWebsitesAndVisits.php
+++ /dev/null
@@ -1,27 +0,0 @@
-<?php
-// Script that creates 100 websites, then outputs a IMG that records a pageview in each website
-// Used initially to test how to handle cookies for this use case (see https://github.com/piwik/piwik/issues/409)
-use Piwik\Common;
-use Piwik\FrontController;
-use Piwik\Piwik;
-use Piwik\Plugins\SitesManager\API;
-
-exit;
-
-define('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";
-require_once PIWIK_INCLUDE_PATH . "/core/API/Request.php";
-require_once PIWIK_INCLUDE_PATH . "/libs/PiwikTracker/PiwikTracker.php";
-
-FrontController::getInstance()->init();
-Piwik::setUserHasSuperUserAccess();
-$count = 100;
-for ($i = 0; $i <= $count; $i++) {
-    $id = API::getInstance()->addSite(Common::getRandomString(), 'http://piwik.org');
-    $t = new PiwikTracker($id, 'http://localhost/trunk/piwik.php');
-    echo $id . " <img width=100 height=10 border=1 src='" . $t->getUrlTrackPageView('title') . "'><br/>";
-}
-
diff --git a/misc/others/test_generateLotsVisitsWebsites.php b/misc/others/test_generateLotsVisitsWebsites.php
deleted file mode 100644
index 33f050fc7750bbb9740367536bcd7f719088d348..0000000000000000000000000000000000000000
--- a/misc/others/test_generateLotsVisitsWebsites.php
+++ /dev/null
@@ -1,154 +0,0 @@
-<?php
-use Piwik\Common;
-use Piwik\Config;
-
-use Piwik\FrontController;
-use Piwik\Log;
-
-define('PIWIK_INCLUDE_PATH', realpath(dirname(__FILE__) . "/../.."));
-define('PIWIK_ENABLE_DISPATCH', false);
-define('PIWIK_ENABLE_ERROR_HANDLER', false);
-define('PIWIK_ENABLE_SESSION_START', false);
-require_once PIWIK_INCLUDE_PATH . "/index.php";
-require_once PIWIK_INCLUDE_PATH . "/core/API/Request.php";
-require_once PIWIK_INCLUDE_PATH . "/libs/PiwikTracker/PiwikTracker.php";
-
-FrontController::getInstance()->init();
-
-// SECURITY: DO NOT DELETE THIS LINE!
-if (!Common::isPhpCliMode()) {
-    die("ERROR: Must be executed in CLI");
-}
-
-$process = new Piwik_StressTests_CopyLogs;
-$process->init();
-$process->run();
-//$process->delete();
-
-class Piwik_StressTests_CopyLogs
-{
-    function init()
-    {
-        $config = Config::getInstance();
-        $config->log['log_only_when_debug_parameter'] = 0;
-        $config->log['log_writers'] = array('screen');
-        $config->log['log_level'] = 'VERBOSE';
-    }
-
-    function run()
-    {
-        // Copy all visits in date range into TODAY
-        $startDate = '2011-08-12';
-        $endDate = '2011-08-12';
-
-        $this->log("Starting...");
-        $db = \Zend_Registry::get('db');
-
-        $initial = $this->getVisitsToday();
-        $this->log(" Visits today so far: " . $initial);
-        $initialActions = $this->getActionsToday();
-        $this->log(" Actions today: " . $initialActions);
-        $initialPurchasedItems = $this->getConversionItemsToday();
-        $this->log(" Purchased items today: " . $initialPurchasedItems);
-        $initialConversions = $this->getConversionsToday();
-        $this->log(" Conversions today: " . $initialConversions);
-
-        $this->log(" Now copying visits between '$startDate' and '$endDate'...");
-        $sql = "INSERT INTO " . Common::prefixTable('log_visit') . " (`idsite`, `idvisitor`, `visitor_localtime`, `visitor_returning`, `visitor_count_visits`, `visit_first_action_time`, `visit_last_action_time`, `visit_exit_idaction_url`, `visit_exit_idaction_name`, `visit_entry_idaction_url`, `visit_entry_idaction_name`, `visit_total_actions`, `visit_total_time`, `visit_goal_converted`, `visit_goal_buyer`, `referer_type`, `referer_name`, `referer_url`, `referer_keyword`, `config_id`, `config_os`, `config_browser_name`, `config_browser_version`, `config_resolution`, `config_pdf`, `config_flash`, `config_java`, `config_director`, `config_quicktime`, `config_realplayer`, `config_windowsmedia`, `config_gears`, `config_silverlight`, `config_cookie`, `location_ip`, `location_browser_lang`, `location_country`, `location_provider`, `custom_var_k1`, `custom_var_v1`, `custom_var_k2`, `custom_var_v2`, `custom_var_k3`, `custom_var_v3`, `custom_var_k4`, `custom_var_v4`, `custom_var_k5`, `custom_var_v5`, `visitor_days_since_last`, `visitor_days_since_order`, `visitor_days_since_first`)
-		SELECT `idsite`, `idvisitor`, `visitor_localtime`, `visitor_returning`, `visitor_count_visits`, CONCAT(CURRENT_DATE()  , \" \",  FLOOR(RAND()*24) , \":\",FLOOR(RAND()*60),\":\",FLOOR(RAND()*60)), CONCAT(CURRENT_DATE()  , \" \",  FLOOR(RAND()*24) , \":\",FLOOR(RAND()*60),\":\",FLOOR(RAND()*60)), `visit_exit_idaction_url`, `visit_exit_idaction_name`, `visit_entry_idaction_url`, `visit_entry_idaction_name`, `visit_total_actions`, `visit_total_time`, `visit_goal_converted`, `visit_goal_buyer`, `referer_type`, `referer_name`, `referer_url`, `referer_keyword`, `config_id`, `config_os`, `config_browser_name`, `config_browser_version`, `config_resolution`, `config_pdf`, `config_flash`, `config_java`, `config_director`, `config_quicktime`, `config_realplayer`, `config_windowsmedia`, `config_gears`, `config_silverlight`, `config_cookie`, `location_ip`, `location_browser_lang`, `location_country`, `location_provider`, `custom_var_k1`, `custom_var_v1`, `custom_var_k2`, `custom_var_v2`, `custom_var_k3`, `custom_var_v3`, `custom_var_k4`, `custom_var_v4`, `custom_var_k5`, `custom_var_v5`, `visitor_days_since_last`, `visitor_days_since_order`, `visitor_days_since_first` 
-		FROM `" . Common::prefixTable('log_visit') . "`
-		WHERE idsite >= 1 AND date(visit_last_action_time) between '$startDate' and '$endDate' ;";
-        $db->query($sql);
-
-        $this->log(" Copying actions...");
-        $sql = "INSERT INTO " . Common::prefixTable('log_link_visit_action') . " (`idsite`, `idvisitor`, `server_time`, `idvisit`, `idaction_url`, `idaction_url_ref`, `idaction_name`, `idaction_name_ref`, `time_spent_ref_action`, `custom_var_k1`, `custom_var_v1`, `custom_var_k2`, `custom_var_v2`, `custom_var_k3`, `custom_var_v3`, `custom_var_k4`, `custom_var_v4`, `custom_var_k5`, `custom_var_v5`)
-		SELECT `idsite`, `idvisitor`, CONCAT(CURRENT_DATE()  , \" \",  FLOOR(RAND()*24) , \":\",FLOOR(RAND()*60),\":\",FLOOR(RAND()*60)), `idvisit`, `idaction_url`, `idaction_url_ref`, `idaction_name`, `idaction_name_ref`, `time_spent_ref_action`, `custom_var_k1`, `custom_var_v1`, `custom_var_k2`, `custom_var_v2`, `custom_var_k3`, `custom_var_v3`, `custom_var_k4`, `custom_var_v4`, `custom_var_k5`, `custom_var_v5` 
-		FROM `" . Common::prefixTable('log_link_visit_action') . "`
-		WHERE idsite >= 1 AND date(server_time) between '$startDate' and '$endDate' 
-		
-		;"; // LIMIT 1000000
-        $db->query($sql);
-
-        $this->log(" Copying conversions...");
-        $sql = "INSERT IGNORE  INTO `" . Common::prefixTable('log_conversion') . "` (`idvisit`, `idsite`, `visitor_days_since_first`, `visitor_days_since_order`, `visitor_count_visits`, `idvisitor`, `server_time`, `idaction_url`, `idlink_va`, `referer_visit_server_date`, `referer_type`, `referer_name`, `referer_keyword`, `visitor_returning`, `location_country`, `url`, `idgoal`, `revenue`, `buster`, `idorder`, `custom_var_k1`, `custom_var_v1`, `custom_var_k2`, `custom_var_v2`, `custom_var_k3`, `custom_var_v3`, `custom_var_k4`, `custom_var_v4`, `custom_var_k5`, `custom_var_v5`, `items`, `revenue_subtotal`, `revenue_tax`, `revenue_shipping`, `revenue_discount`)
-		SELECT `idvisit`, `idsite`, `visitor_days_since_first`, `visitor_days_since_order`, `visitor_count_visits`, `idvisitor`, CONCAT(CURRENT_DATE()  , \" \",  FLOOR(RAND()*24) , \":\",FLOOR(RAND()*60),\":\",FLOOR(RAND()*60)), `idaction_url`, `idlink_va`, `referer_visit_server_date`, `referer_type`, `referer_name`, `referer_keyword`, `visitor_returning`, `location_country`, `url`, `idgoal`, `revenue`, FLOOR(`buster` * RAND()), CONCAT(`idorder`,SUBSTRING(MD5(RAND()) FROM 1 FOR 9))  , `custom_var_k1`, `custom_var_v1`, `custom_var_k2`, `custom_var_v2`, `custom_var_k3`, `custom_var_v3`, `custom_var_k4`, `custom_var_v4`, `custom_var_k5`, `custom_var_v5`, `items`, `revenue_subtotal`, `revenue_tax`, `revenue_shipping`, `revenue_discount`
-		FROM `" . Common::prefixTable('log_conversion') . "`
-		WHERE idsite >= 1 AND date(server_time) between '$startDate' and '$endDate' ;";
-        $db->query($sql);
-
-        $this->log(" Copying purchased items...");
-        $sql = "INSERT INTO `" . Common::prefixTable('log_conversion_item') . "` (`idsite`, `idvisitor`, `server_time`, `idvisit`, `idorder`, `idaction_sku`, `idaction_name`, `idaction_category`, `price`, `quantity`, `deleted`)
-		SELECT `idsite`, `idvisitor`, CONCAT(CURRENT_DATE()  , \" \",  TIME(`server_time`)), `idvisit`, CONCAT(`idorder`,SUBSTRING(MD5(RAND()) FROM 1 FOR 9)) , `idaction_sku`, `idaction_name`, `idaction_category`, `price`, `quantity`, `deleted`
-		FROM `" . Common::prefixTable('log_conversion_item') . "`
-		WHERE idsite >= 1 AND date(server_time) between '$startDate' and '$endDate' ;";
-        $db->query($sql);
-
-        $now = $this->getVisitsToday();
-        $actions = $this->getActionsToday();
-        $purchasedItems = $this->getConversionItemsToday();
-        $conversions = $this->getConversionsToday();
-
-        $this->log(" -------------------------------------");
-        $this->log(" Today visits after import: " . $now);
-        $this->log(" Actions: " . $actions);
-        $this->log(" Purchased items: " . $purchasedItems);
-        $this->log(" Conversions: " . $conversions);
-        $this->log(" - New visits created: " . ($now - $initial));
-        $this->log(" - Actions created: " . ($actions - $initialActions));
-        $this->log(" - New conversions created: " . ($conversions - $initialConversions));
-        $this->log(" - New purchased items created: " . ($purchasedItems - $initialPurchasedItems));
-        $this->log("done");
-    }
-
-    function delete()
-    {
-        $this->log("Deleting logs for today...");
-        $db = \Zend_Registry::get('db');
-        $sql = "DELETE FROM " . Common::prefixTable('log_visit') . "
-				WHERE date(visit_last_action_time) = CURRENT_DATE();";
-        $db->query($sql);
-        foreach (array('log_link_visit_action', 'log_conversion', 'log_conversion_item') as $table) {
-            $sql = "DELETE FROM " . Common::prefixTable($table) . "
-		 		WHERE date(server_time) = CURRENT_DATE();";
-            $db->query($sql);
-        }
-
-        $tablesToOptimize = array(
-            Common::prefixTable('log_link_visit_action'),
-            Common::prefixTable('log_conversion'),
-            Common::prefixTable('log_conversion_item'),
-            Common::prefixTable('log_visit')
-        );
-        \Piwik\Db::optimizeTables($tablesToOptimize);
-
-        $this->log("done");
-    }
-
-    function log($m)
-    {
-        Log::info($m);
-    }
-
-    function getVisitsToday()
-    {
-        $sql = "SELECT count(*) FROM `" . Common::prefixTable('log_visit') . "` WHERE idsite >= 1 AND DATE(`visit_last_action_time`) = CURRENT_DATE;";
-        return \Zend_Registry::get('db')->fetchOne($sql);
-    }
-
-    function getConversionItemsToday($table = 'log_conversion_item')
-    {
-        $sql = "SELECT count(*) FROM `" . Common::prefixTable($table) . "` WHERE idsite >= 1 AND DATE(`server_time`) = CURRENT_DATE;";
-        return \Zend_Registry::get('db')->fetchOne($sql);
-    }
-
-    function getConversionsToday()
-    {
-        return $this->getConversionItemsToday($table = "log_conversion");
-    }
-
-    function getActionsToday()
-    {
-        $sql = "SELECT count(*) FROM `" . Common::prefixTable('log_link_visit_action') . "` WHERE idsite >= 1 AND DATE(`server_time`) = CURRENT_DATE;";
-        return \Zend_Registry::get('db')->fetchOne($sql);
-    }
-}
\ No newline at end of file