Matomo database will be upgraded from version 2.17.1 to the new version 3.5.0.
The following plugins will be updated: Goals.
The following dimensions will be updated: log_link_visit_action.idpageview, log_link_visit_action.interaction_position, log_link_visit_action.time_spent_ref_action, log_visit.config_browser_engine, log_visit.config_browser_name, log_visit.config_browser_version, log_visit.config_cookie, log_visit.config_device_brand, log_visit.config_device_model, log_visit.config_device_type, log_visit.config_director, log_visit.config_flash, log_visit.config_gears, log_visit.config_java, log_visit.config_os, log_visit.config_pdf, log_visit.config_quicktime, log_visit.config_realplayer, log_visit.config_resolution, log_visit.config_silverlight, log_visit.config_windowsmedia, log_visit.location_browser_lang, log_visit.location_country, log_visit.location_latitude, log_visit.location_longitude, log_visit.location_region, log_visit.referer_url, log_visit.visit_entry_idaction_name, log_visit.visit_exit_idaction_name, log_visit.visit_exit_idaction_url, log_visit.visit_goal_buyer, log_visit.visit_goal_converted, log_visit.visit_total_actions, log_visit.visit_total_events, log_visit.visit_total_interactions, log_visit.visit_total_searches, log_visit.visit_total_time, log_visit.visitor_count_visits, log_visit.visitor_days_since_first, log_visit.visitor_days_since_last, log_visit.visitor_days_since_order, log_visit.visitor_localtime, log_visit.visitor_returning.
Important notes for large Matomo installations
If you have a large Matomo database, updates might take too long to run in the browser. In this situation, you can execute the updates from your command line:
php /html/piwik/console core:update
If you manage a high traffic Matomo server, we recommend to momentarily disable visitor Tracking and put the Matomo User Interface in maintenance mode.
› Click here to view and copy the list of SQL queries that will get executed
# FYI: these are the SQL queries that will be executed to upgrade your database to Matomo 3.5.0
UPDATE piwik_user_dashboard SET layout = '{\"config\":{\"layout\":\"33-33-33\"},\"columns\":[[{\"uniqueId\":\"widgetVisitsSummarygetEvolutionGraphforceView1viewDataTablegraphEvolution\",\"parameters\":{\"module\":\"VisitsSummary\",\"action\":\"getEvolutionGraph\",\"columns\":[\"nb_visits\",\"nb_uniq_visitors\"],\"widget\":1,\"columns_to_display\":[\"nb_visits\",\"nb_uniq_visitors\"],\"rows\":[],\"rows_to_display\":[],\"forceView\":\"1\",\"viewDataTable\":\"graphEvolution\"},\"isHidden\":false},{\"uniqueId\":\"widgetVisitsSummarygetforceView1viewDataTablesparklines\",\"parameters\":{\"module\":\"VisitsSummary\",\"action\":\"get\",\"widget\":1,\"forceView\":\"1\",\"viewDataTable\":\"sparklines\"},\"isHidden\":false},{\"uniqueId\":\"widgetActionsgetPageUrls\",\"parameters\":{\"module\":\"Actions\",\"action\":\"getPageUrls\",\"widget\":1,\"isFooterExpandedInDashboard\":true,\"filter_limit\":25},\"isHidden\":false},{\"uniqueId\":\"widgetLivegetSimpleLastVisitCount\",\"parameters\":{\"module\":\"Live\",\"action\":\"getSimpleLastVisitCount\",\"widget\":1},\"isHidden\":false},{\"uniqueId\":\"widgetLivewidget\",\"parameters\":{\"module\":\"Live\",\"action\":\"widget\",\"widget\":1},\"isHidden\":false}],[{\"uniqueId\":\"widgetActionsgetEntryPageTitles\",\"parameters\":{\"module\":\"Actions\",\"action\":\"getEntryPageTitles\",\"widget\":1,\"isFooterExpandedInDashboard\":true,\"filter_limit\":25},\"isHidden\":false}],[{\"uniqueId\":\"widgetReferrersgetWebsites\",\"parameters\":{\"module\":\"Referrers\",\"action\":\"getWebsites\",\"widget\":1},\"isHidden\":false}]]}' WHERE iddashboard = '1';
CREATE TABLE `piwik_plugin_setting` (`plugin_name` VARCHAR(60) NOT NULL, `setting_name` VARCHAR(255) NOT NULL, `setting_value` LONGTEXT NOT NULL, `user_login` VARCHAR(100) NOT NULL DEFAULT '') ENGINE=InnoDB DEFAULT CHARSET=utf8;
ALTER TABLE `piwik_plugin_setting` ADD INDEX index_plugin_name_user_login (`plugin_name`, `user_login`);
DELETE FROM `piwik_option` WHERE `option_name` like "Plugin_%_Settings";
DROP TABLE IF EXISTS `piwik_site_setting`;
CREATE TABLE `piwik_site_setting` (`idsite` INTEGER(10) UNSIGNED NOT NULL, `plugin_name` VARCHAR(60) NOT NULL, `setting_name` VARCHAR(255) NOT NULL, `setting_value` LONGTEXT NOT NULL) ENGINE=InnoDB DEFAULT CHARSET=utf8;
ALTER TABLE `piwik_site_setting` ADD INDEX(idsite, plugin_name);
ALTER TABLE `piwik_log_visit` CHANGE `idvisit` `idvisit` BIGINT(10) UNSIGNED NOT NULL AUTO_INCREMENT;
ALTER TABLE `piwik_log_conversion_item` CHANGE `idvisit` `idvisit` BIGINT(10) UNSIGNED NOT NULL;
ALTER TABLE `piwik_log_conversion` CHANGE `idvisit` `idvisit` BIGINT(10) UNSIGNED NOT NULL, CHANGE `idlink_va` `idlink_va` BIGINT(10) UNSIGNED default NULL;
ALTER TABLE `piwik_log_link_visit_action` CHANGE `idlink_va` `idlink_va` BIGINT(10) UNSIGNED NOT NULL AUTO_INCREMENT, CHANGE `idvisit` `idvisit` BIGINT(10) UNSIGNED NOT NULL, CHANGE `idaction_name_ref` `idaction_name_ref` INTEGER(10) UNSIGNED NULL;
ALTER TABLE `piwik_user` CHANGE `password` `password` VARCHAR(255) NOT NULL;
CREATE TABLE `piwik_privacy_logdata_anonymizations` (`idlogdata_anonymization` BIGINT UNSIGNED NOT NULL AUTO_INCREMENT, `idsites` TEXT NULL DEFAULT NULL, `date_start` DATETIME NOT NULL, `date_end` DATETIME NOT NULL, `anonymize_ip` TINYINT(1) UNSIGNED NOT NULL DEFAULT 0, `anonymize_location` TINYINT(1) UNSIGNED NOT NULL DEFAULT 0, `anonymize_userid` TINYINT(1) UNSIGNED NOT NULL DEFAULT 0, `unset_visit_columns` TEXT NOT NULL DEFAULT '', `unset_link_visit_action_columns` TEXT NOT NULL DEFAULT '', `output` MEDIUMTEXT NULL DEFAULT NULL, `scheduled_date` DATETIME NULL, `job_start_date` DATETIME NULL, `job_finish_date` DATETIME NULL, `requester` VARCHAR(100) NOT NULL DEFAULT '', PRIMARY KEY ( `idlogdata_anonymization` )) ENGINE=InnoDB DEFAULT CHARSET=utf8;
ALTER TABLE `piwik_privacy_logdata_anonymizations` ADD INDEX index_job_start_date (`job_start_date`);
ALTER TABLE `piwik_plugin_setting` ADD COLUMN `json_encoded` TINYINT UNSIGNED NOT NULL DEFAULT 0;
ALTER TABLE `piwik_site_setting` ADD COLUMN `json_encoded` TINYINT UNSIGNED NOT NULL DEFAULT 0;
ALTER TABLE `piwik_goal` ADD COLUMN `description` VARCHAR(255) NOT NULL DEFAULT '' AFTER `name`;
ALTER TABLE `piwik_log_visit` MODIFY COLUMN `visit_goal_buyer` TINYINT(1) NULL, MODIFY COLUMN `visit_goal_converted` TINYINT(1) NULL, MODIFY COLUMN `visitor_days_since_first` SMALLINT(5) UNSIGNED NULL, MODIFY COLUMN `visitor_days_since_order` SMALLINT(5) UNSIGNED NULL, MODIFY COLUMN `visitor_returning` TINYINT(1) NULL, MODIFY COLUMN `visitor_count_visits` INT(11) UNSIGNED NOT NULL, MODIFY COLUMN `visit_entry_idaction_name` INTEGER(10) UNSIGNED NULL, MODIFY COLUMN `visit_exit_idaction_name` INTEGER(10) UNSIGNED NULL, MODIFY COLUMN `visit_exit_idaction_url` INTEGER(10) UNSIGNED NULL DEFAULT 0, MODIFY COLUMN `visit_total_actions` INT(11) UNSIGNED NULL, ADD COLUMN `visit_total_interactions` SMALLINT UNSIGNED DEFAULT 0, MODIFY COLUMN `visit_total_searches` SMALLINT(5) UNSIGNED NULL, MODIFY COLUMN `referer_url` TEXT NULL, MODIFY COLUMN `location_browser_lang` VARCHAR(20) NULL, MODIFY COLUMN `config_browser_engine` VARCHAR(10) NULL, MODIFY COLUMN `config_browser_name` VARCHAR(10) NULL, MODIFY COLUMN `config_browser_version` VARCHAR(20) NULL, MODIFY COLUMN `config_device_brand` VARCHAR( 100 ) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, MODIFY COLUMN `config_device_model` VARCHAR( 100 ) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, MODIFY COLUMN `config_device_type` TINYINT( 100 ) NULL DEFAULT NULL, MODIFY COLUMN `config_os` CHAR(3) NULL, MODIFY COLUMN `visit_total_events` INT(11) UNSIGNED NULL, MODIFY COLUMN `visitor_localtime` TIME NULL, MODIFY COLUMN `visitor_days_since_last` SMALLINT(5) UNSIGNED NULL, MODIFY COLUMN `config_resolution` VARCHAR(18) NULL, MODIFY COLUMN `config_cookie` TINYINT(1) NULL, MODIFY COLUMN `config_director` TINYINT(1) NULL, MODIFY COLUMN `config_flash` TINYINT(1) NULL, MODIFY COLUMN `config_gears` TINYINT(1) NULL, MODIFY COLUMN `config_java` TINYINT(1) NULL, MODIFY COLUMN `config_pdf` TINYINT(1) NULL, MODIFY COLUMN `config_quicktime` TINYINT(1) NULL, MODIFY COLUMN `config_realplayer` TINYINT(1) NULL, MODIFY COLUMN `config_silverlight` TINYINT(1) NULL, MODIFY COLUMN `config_windowsmedia` TINYINT(1) NULL, MODIFY COLUMN `visit_total_time` INT(11) UNSIGNED NOT NULL, MODIFY COLUMN `location_country` CHAR(3) NULL, MODIFY COLUMN `location_latitude` decimal(9, 6) DEFAULT NULL, MODIFY COLUMN `location_longitude` decimal(9, 6) DEFAULT NULL, MODIFY COLUMN `location_region` char(3) DEFAULT NULL;
ALTER TABLE `piwik_log_conversion` MODIFY COLUMN `visitor_days_since_first` SMALLINT(5) UNSIGNED NULL, MODIFY COLUMN `visitor_days_since_order` SMALLINT(5) UNSIGNED NULL, MODIFY COLUMN `visitor_returning` TINYINT(1) NULL, MODIFY COLUMN `visitor_count_visits` INT(11) UNSIGNED NOT NULL, ADD COLUMN `config_device_brand` VARCHAR( 100 ) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, ADD COLUMN `config_device_model` VARCHAR( 100 ) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, ADD COLUMN `config_device_type` TINYINT( 100 ) NULL DEFAULT NULL, MODIFY COLUMN `location_country` CHAR(3) NULL, MODIFY COLUMN `location_latitude` decimal(9, 6) DEFAULT NULL, MODIFY COLUMN `location_longitude` decimal(9, 6) DEFAULT NULL, MODIFY COLUMN `location_region` char(3) DEFAULT NULL;
ALTER TABLE `piwik_log_link_visit_action` ADD COLUMN `idpageview` CHAR(6) NULL DEFAULT NULL, ADD COLUMN `interaction_position` SMALLINT UNSIGNED DEFAULT NULL, MODIFY COLUMN `time_spent_ref_action` INTEGER(10) UNSIGNED NULL;
Need help upgrading Matomo?
If you need support to upgrade your Matomo, the creators of Matomo are here to help you make the Matomo upgrade a success and provide all instructions, best practises and ongoing support. Contact the Matomo experts to get started upgrading your Matomo safely.
Ready to go?
The database upgrade process may take a while, so please be patient.
File integrity check failed and reported some errors. You should fix this issue and then refresh this page until it shows no error. |
Directories were found in your Matomo but we didn't expect them. --> Please delete these directories to prevent errors. <-- Directory to delete: libs/bower_components/jScrollPane/issues Directory to delete: libs/bower_components/jScrollPane/themes Directory to delete: libs/bower_components/jquery/src Directory to delete: libs/pChart Directory to delete: plugins/UserCountry/images Directory to delete: vendor/doctrine/annotations Directory to delete: vendor/doctrine/lexer Directory to delete: vendor/mnapoli To delete all these directories at once, you can run this command: rm -Rf /html/piwik/libs/bower_components/jScrollPane/issues /html/piwik/libs/bower_components/jScrollPane/themes /html/piwik/libs/bower_components/jquery/src /html/piwik/libs/pChart /html/piwik/plugins/UserCountry/images /html/piwik/vendor/doctrine/annotations /html/piwik/vendor/doctrine/lexer /html/piwik/vendor/mnapoli |
Files were found in your Matomo but we didn't expect them. --> Please delete these files to prevent errors. <-- File to delete: PULL_REQUEST_TEMPLATE File to delete: libs/bower_components/jquery/MIT-LICENSE.txt File to delete: libs/bower_components/jquery-placeholder/demo.html File to delete: libs/bower_components/jquery-placeholder/LICENSE-MIT.txt File to delete: libs/bower_components/jquery-placeholder/README.md File to delete: libs/bower_components/jqueryui-touch-punch/bower.json File to delete: libs/bower_components/jqueryui-touch-punch/jquery.ui.touch-punch.js File to delete: libs/bower_components/jqueryui-touch-punch/jquery.ui.touch-punch.min.js File to delete: libs/bower_components/jqueryui-touch-punch/README.md File to delete: libs/bower_components/jScrollPane/ajax_content.html File to delete: libs/bower_components/jScrollPane/ajax.html File to delete: libs/bower_components/jScrollPane/anchors.html File to delete: libs/bower_components/jScrollPane/api.html File to delete: libs/bower_components/jScrollPane/arrow_hover.html File to delete: libs/bower_components/jScrollPane/arrow_positions.html File to delete: libs/bower_components/jScrollPane/arrows.html File to delete: libs/bower_components/jScrollPane/auto_reinitialise.html File to delete: libs/bower_components/jScrollPane/basic.html File to delete: libs/bower_components/jScrollPane/caps.html File to delete: libs/bower_components/jScrollPane/changelog.html File to delete: libs/bower_components/jScrollPane/destroy.html File to delete: libs/bower_components/jScrollPane/drag_size.html File to delete: libs/bower_components/jScrollPane/dynamic_content.html File to delete: libs/bower_components/jScrollPane/dynamic_height.html File to delete: libs/bower_components/jScrollPane/dynamic_width.html File to delete: libs/bower_components/jScrollPane/events.html File to delete: libs/bower_components/jScrollPane/faqs.html File to delete: libs/bower_components/jScrollPane/fixed_width.html File to delete: libs/bower_components/jScrollPane/focus.html File to delete: libs/bower_components/jScrollPane/fullpage_scroll.html File to delete: libs/bower_components/jScrollPane/GPL-LICENSE.txt File to delete: libs/bower_components/jScrollPane/iframe2.html File to delete: libs/bower_components/jScrollPane/iframe_content1.html File to delete: libs/bower_components/jScrollPane/iframe_content2.html File to delete: libs/bower_components/jScrollPane/iframe_content3.html File to delete: libs/bower_components/jScrollPane/iframe_content4.html File to delete: libs/bower_components/jScrollPane/iframe.html File to delete: libs/bower_components/jScrollPane/image2.html File to delete: libs/bower_components/jScrollPane/image.html File to delete: libs/bower_components/jScrollPane/index.html File to delete: libs/bower_components/jScrollPane/invisibles.html File to delete: libs/bower_components/jScrollPane/known_issues.html File to delete: libs/bower_components/jScrollPane/less_basic.html File to delete: libs/bower_components/jScrollPane/mwheel_intent.html File to delete: libs/bower_components/jScrollPane/override_animate.html File to delete: libs/bower_components/jScrollPane/runeimp2.html File to delete: libs/bower_components/jScrollPane/runeimp.html File to delete: libs/bower_components/jScrollPane/scroll_on_left.html File to delete: libs/bower_components/jScrollPane/scroll_to_animate.html File to delete: libs/bower_components/jScrollPane/scroll_to.html File to delete: libs/bower_components/jScrollPane/settings.html File to delete: libs/bower_components/jScrollPane/short.html File to delete: libs/bower_components/jScrollPane/v1.html File to delete: libs/jquery/jquery.smartbanner.js File to delete: libs/jquery/MIT-LICENSE-smartbanner.txt File to delete: libs/jquery/stylesheets/jquery.smartbanner.css File to delete: libs/sparkline/lib/Object.php File to delete: misc/How to install Piwik.html File to delete: misc/others/iframeWidget.htm File to delete: plugins/SitesManager/templates/measurable_type_settings.twig File to delete: plugins/SitesManager/templates/dialogs/edit-dialog.html File to delete: plugins/UserCountry/Segment.php File to delete: plugins/UserCountry/Visitor.php File to delete: plugins/UserCountry/javascripts/userCountry.js File to delete: plugins/UserCountry/templates/getGeoIpUpdaterManageScreen.twig File to delete: plugins/UserCountry/templates/index.twig File to delete: plugins/UserCountryMap/Menu.php File to delete: plugins/UserCountryMap/svg/SDS.svg File to delete: plugins/UserCountryMap/svg/TIB.svg File to delete: plugins/UserLanguage/Visitor.php File to delete: plugins/UsersManager/javascripts/giveViewAccess.js File to delete: plugins/UsersManager/javascripts/usersManager.js File to delete: plugins/UsersManager/javascripts/usersSettings.js File to delete: plugins/VisitFrequency/Menu.php File to delete: plugins/VisitFrequency/Widgets.php File to delete: plugins/VisitFrequency/templates/getSparklines.twig File to delete: plugins/VisitFrequency/templates/index.twig File to delete: plugins/VisitFrequency/templates/_sparklines.twig File to delete: plugins/VisitorInterest/Controller.php File to delete: plugins/VisitorInterest/Menu.php File to delete: plugins/VisitorInterest/templates/index.twig File to delete: plugins/VisitsSummary/Menu.php File to delete: plugins/VisitsSummary/Widgets.php File to delete: plugins/VisitTime/Controller.php File to delete: plugins/VisitTime/Menu.php File to delete: plugins/VisitTime/Segment.php File to delete: plugins/VisitTime/Columns/ServerTime.php File to delete: plugins/VisitTime/templates/index.twig File to delete: plugins/Widgetize/javascripts/widgetize.js File to delete: vendor/maxmind-db/reader/autoload.php File to delete: vendor/monolog/monolog/CHANGELOG.mdown File to delete: vendor/monolog/monolog/README.mdown File to delete: vendor/pear/pear-core-minimal/copy-from-pear-core.sh File to delete: vendor/php-di/php-di/src/DI/Definition/AbstractFunctionCallDefinition.php File to delete: vendor/php-di/php-di/src/DI/Definition/Dumper/AliasDefinitionDumper.php File to delete: vendor/php-di/php-di/src/DI/Definition/Dumper/ArrayDefinitionDumper.php File to delete: vendor/php-di/php-di/src/DI/Definition/Dumper/DecoratorDefinitionDumper.php File to delete: vendor/php-di/php-di/src/DI/Definition/Dumper/DefinitionDumperDispatcher.php File to delete: vendor/php-di/php-di/src/DI/Definition/Dumper/DefinitionDumper.php File to delete: vendor/php-di/php-di/src/DI/Definition/Dumper/EnvironmentVariableDefinitionDumper.php File to delete: vendor/php-di/php-di/src/DI/Definition/Dumper/FactoryDefinitionDumper.php File to delete: vendor/php-di/php-di/src/DI/Definition/Dumper/StringDefinitionDumper.php File to delete: vendor/php-di/php-di/src/DI/Definition/Dumper/ValueDefinitionDumper.php File to delete: vendor/php-di/php-di/src/DI/Definition/Resolver/AliasResolver.php File to delete: vendor/php-di/php-di/src/DI/Definition/Resolver/StringResolver.php File to delete: vendor/php-di/php-di/src/DI/Definition/Resolver/ValueResolver.php File to delete: vendor/php-di/php-di/src/DI/Reflection/CallableReflectionFactory.php File to delete: vendor/piwik/referrer-spam-blacklist/composer.json File to delete: vendor/piwik/referrer-spam-blacklist/CONTRIBUTING.md File to delete: vendor/piwik/referrer-spam-blacklist/README.md File to delete: vendor/piwik/referrer-spam-blacklist/spammers.txt File to delete: vendor/piwik/searchengine-and-social-list/composer.json File to delete: vendor/piwik/searchengine-and-social-list/README.md File to delete: vendor/piwik/searchengine-and-social-list/SearchEngines.yml File to delete: vendor/piwik/searchengine-and-social-list/Socials.yml To delete all these files at once, you can run this command: rm "/html/piwik/PULL_REQUEST_TEMPLATE" "/html/piwik/libs/bower_components/jquery/MIT-LICENSE.txt" "/html/piwik/libs/bower_components/jquery-placeholder/demo.html" "/html/piwik/libs/bower_components/jquery-placeholder/LICENSE-MIT.txt" "/html/piwik/libs/bower_components/jquery-placeholder/README.md" "/html/piwik/libs/bower_components/jqueryui-touch-punch/bower.json" "/html/piwik/libs/bower_components/jqueryui-touch-punch/jquery.ui.touch-punch.js" "/html/piwik/libs/bower_components/jqueryui-touch-punch/jquery.ui.touch-punch.min.js" "/html/piwik/libs/bower_components/jqueryui-touch-punch/README.md" "/html/piwik/libs/bower_components/jScrollPane/ajax_content.html" "/html/piwik/libs/bower_components/jScrollPane/ajax.html" "/html/piwik/libs/bower_components/jScrollPane/anchors.html" "/html/piwik/libs/bower_components/jScrollPane/api.html" "/html/piwik/libs/bower_components/jScrollPane/arrow_hover.html" "/html/piwik/libs/bower_components/jScrollPane/arrow_positions.html" "/html/piwik/libs/bower_components/jScrollPane/arrows.html" "/html/piwik/libs/bower_components/jScrollPane/auto_reinitialise.html" "/html/piwik/libs/bower_components/jScrollPane/basic.html" "/html/piwik/libs/bower_components/jScrollPane/caps.html" "/html/piwik/libs/bower_components/jScrollPane/changelog.html" "/html/piwik/libs/bower_components/jScrollPane/destroy.html" "/html/piwik/libs/bower_components/jScrollPane/drag_size.html" "/html/piwik/libs/bower_components/jScrollPane/dynamic_content.html" "/html/piwik/libs/bower_components/jScrollPane/dynamic_height.html" "/html/piwik/libs/bower_components/jScrollPane/dynamic_width.html" "/html/piwik/libs/bower_components/jScrollPane/events.html" "/html/piwik/libs/bower_components/jScrollPane/faqs.html" "/html/piwik/libs/bower_components/jScrollPane/fixed_width.html" "/html/piwik/libs/bower_components/jScrollPane/focus.html" "/html/piwik/libs/bower_components/jScrollPane/fullpage_scroll.html" "/html/piwik/libs/bower_components/jScrollPane/GPL-LICENSE.txt" "/html/piwik/libs/bower_components/jScrollPane/iframe2.html" "/html/piwik/libs/bower_components/jScrollPane/iframe_content1.html" "/html/piwik/libs/bower_components/jScrollPane/iframe_content2.html" "/html/piwik/libs/bower_components/jScrollPane/iframe_content3.html" "/html/piwik/libs/bower_components/jScrollPane/iframe_content4.html" "/html/piwik/libs/bower_components/jScrollPane/iframe.html" "/html/piwik/libs/bower_components/jScrollPane/image2.html" "/html/piwik/libs/bower_components/jScrollPane/image.html" "/html/piwik/libs/bower_components/jScrollPane/index.html" "/html/piwik/libs/bower_components/jScrollPane/invisibles.html" "/html/piwik/libs/bower_components/jScrollPane/known_issues.html" "/html/piwik/libs/bower_components/jScrollPane/less_basic.html" "/html/piwik/libs/bower_components/jScrollPane/mwheel_intent.html" "/html/piwik/libs/bower_components/jScrollPane/override_animate.html" "/html/piwik/libs/bower_components/jScrollPane/runeimp2.html" "/html/piwik/libs/bower_components/jScrollPane/runeimp.html" "/html/piwik/libs/bower_components/jScrollPane/scroll_on_left.html" "/html/piwik/libs/bower_components/jScrollPane/scroll_to_animate.html" "/html/piwik/libs/bower_components/jScrollPane/scroll_to.html" rm "/html/piwik/libs/bower_components/jScrollPane/settings.html" "/html/piwik/libs/bower_components/jScrollPane/short.html" "/html/piwik/libs/bower_components/jScrollPane/v1.html" "/html/piwik/libs/jquery/jquery.smartbanner.js" "/html/piwik/libs/jquery/MIT-LICENSE-smartbanner.txt" "/html/piwik/libs/jquery/stylesheets/jquery.smartbanner.css" "/html/piwik/libs/sparkline/lib/Object.php" "/html/piwik/misc/How to install Piwik.html" "/html/piwik/misc/others/iframeWidget.htm" "/html/piwik/plugins/SitesManager/templates/measurable_type_settings.twig" "/html/piwik/plugins/SitesManager/templates/dialogs/edit-dialog.html" "/html/piwik/plugins/UserCountry/Segment.php" "/html/piwik/plugins/UserCountry/Visitor.php" "/html/piwik/plugins/UserCountry/javascripts/userCountry.js" "/html/piwik/plugins/UserCountry/templates/getGeoIpUpdaterManageScreen.twig" "/html/piwik/plugins/UserCountry/templates/index.twig" "/html/piwik/plugins/UserCountryMap/Menu.php" "/html/piwik/plugins/UserCountryMap/svg/SDS.svg" "/html/piwik/plugins/UserCountryMap/svg/TIB.svg" "/html/piwik/plugins/UserLanguage/Visitor.php" "/html/piwik/plugins/UsersManager/javascripts/giveViewAccess.js" "/html/piwik/plugins/UsersManager/javascripts/usersManager.js" "/html/piwik/plugins/UsersManager/javascripts/usersSettings.js" "/html/piwik/plugins/VisitFrequency/Menu.php" "/html/piwik/plugins/VisitFrequency/Widgets.php" "/html/piwik/plugins/VisitFrequency/templates/getSparklines.twig" "/html/piwik/plugins/VisitFrequency/templates/index.twig" "/html/piwik/plugins/VisitFrequency/templates/_sparklines.twig" "/html/piwik/plugins/VisitorInterest/Controller.php" "/html/piwik/plugins/VisitorInterest/Menu.php" "/html/piwik/plugins/VisitorInterest/templates/index.twig" "/html/piwik/plugins/VisitsSummary/Menu.php" "/html/piwik/plugins/VisitsSummary/Widgets.php" "/html/piwik/plugins/VisitTime/Controller.php" "/html/piwik/plugins/VisitTime/Menu.php" "/html/piwik/plugins/VisitTime/Segment.php" "/html/piwik/plugins/VisitTime/Columns/ServerTime.php" "/html/piwik/plugins/VisitTime/templates/index.twig" "/html/piwik/plugins/Widgetize/javascripts/widgetize.js" "/html/piwik/vendor/maxmind-db/reader/autoload.php" "/html/piwik/vendor/monolog/monolog/CHANGELOG.mdown" "/html/piwik/vendor/monolog/monolog/README.mdown" "/html/piwik/vendor/pear/pear-core-minimal/copy-from-pear-core.sh" "/html/piwik/vendor/php-di/php-di/src/DI/Definition/AbstractFunctionCallDefinition.php" "/html/piwik/vendor/php-di/php-di/src/DI/Definition/Dumper/AliasDefinitionDumper.php" "/html/piwik/vendor/php-di/php-di/src/DI/Definition/Dumper/ArrayDefinitionDumper.php" "/html/piwik/vendor/php-di/php-di/src/DI/Definition/Dumper/DecoratorDefinitionDumper.php" "/html/piwik/vendor/php-di/php-di/src/DI/Definition/Dumper/DefinitionDumperDispatcher.php" "/html/piwik/vendor/php-di/php-di/src/DI/Definition/Dumper/DefinitionDumper.php" "/html/piwik/vendor/php-di/php-di/src/DI/Definition/Dumper/EnvironmentVariableDefinitionDumper.php" rm "/html/piwik/vendor/php-di/php-di/src/DI/Definition/Dumper/FactoryDefinitionDumper.php" "/html/piwik/vendor/php-di/php-di/src/DI/Definition/Dumper/StringDefinitionDumper.php" "/html/piwik/vendor/php-di/php-di/src/DI/Definition/Dumper/ValueDefinitionDumper.php" "/html/piwik/vendor/php-di/php-di/src/DI/Definition/Resolver/AliasResolver.php" "/html/piwik/vendor/php-di/php-di/src/DI/Definition/Resolver/StringResolver.php" "/html/piwik/vendor/php-di/php-di/src/DI/Definition/Resolver/ValueResolver.php" "/html/piwik/vendor/php-di/php-di/src/DI/Reflection/CallableReflectionFactory.php" "/html/piwik/vendor/piwik/referrer-spam-blacklist/composer.json" "/html/piwik/vendor/piwik/referrer-spam-blacklist/CONTRIBUTING.md" "/html/piwik/vendor/piwik/referrer-spam-blacklist/README.md" "/html/piwik/vendor/piwik/referrer-spam-blacklist/spammers.txt" "/html/piwik/vendor/piwik/searchengine-and-social-list/composer.json" "/html/piwik/vendor/piwik/searchengine-and-social-list/README.md" "/html/piwik/vendor/piwik/searchengine-and-social-list/SearchEngines.yml" "/html/piwik/vendor/piwik/searchengine-and-social-list/Socials.yml" |