diff --git a/config/global.ini.php b/config/global.ini.php
index 747de31d39a9bf0b200fe5a40afed2835cd66754..9d76c4be20d909c86d10f5345a83345c50f74977 100644
--- a/config/global.ini.php
+++ b/config/global.ini.php
@@ -86,6 +86,7 @@ tracker_always_new_visitor = 0
 ; Allow automatic upgrades to Beta or RC releases
 allow_upgrades_to_beta = 0
 
+[DebugTests]
 ; Set to 1 by default. If you set to 0, the standalone plugins (with their own git repositories)
 ; will not be loaded when executing tests.
 enable_load_standalone_plugins_during_tests = 1
@@ -277,6 +278,11 @@ datatable_archiving_maximum_rows_actions = 500
 ; because each subdirectory doesn't have paging at the bottom, so all data should be displayed if possible.
 datatable_archiving_maximum_rows_subtable_actions = 100
 
+; maximum number of rows for any of the Events tables (Categories, Actions, Names)
+datatable_archiving_maximum_rows_events = 500
+; maximum number of rows for sub-tables of the Events tables (eg. for the subtables Categories>Actions or Categories>Names).
+datatable_archiving_maximum_rows_subtable_events = 100
+
 ; maximum number of rows for other tables (Providers, User settings configurations)
 datatable_archiving_maximum_rows_standard = 500
 
diff --git a/core/Plugin/Manager.php b/core/Plugin/Manager.php
index 48c902860f90c9194a12f2a3a21a6912de5f7f7f..28d7737656eb96d6d090f241a8d6d2999ce9aa06 100644
--- a/core/Plugin/Manager.php
+++ b/core/Plugin/Manager.php
@@ -106,7 +106,7 @@ class Manager extends Singleton
     {
         $toLoad = array();
 
-        $loadStandalonePluginsDuringTests = @Config::getInstance()->Debug['enable_load_standalone_plugins_during_tests'];
+        $loadStandalonePluginsDuringTests = @Config::getInstance()->DebugTests['enable_load_standalone_plugins_during_tests'];
 
         foreach($this->readPluginsDirectory() as $plugin) {
             $forceDisable = array(