Matomo database will be upgraded from version 2.16.2 to the new version 3.14.1.
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_entry_idaction_url, 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 /var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/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.
FYI: these are the SQL queries and console commands that will be executed to upgrade your database to Matomo 3.14.1
› Click here to view and copy the list of SQL queries and console commands that will get executed
# These SQL queries will be executed:
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\",\"nb_users\",\"nb_uniq_downloads\"],\"widget\":1,\"columns_to_display\":[\"nb_visits\",\"nb_uniq_visitors\",\"nb_users\",\"nb_uniq_downloads\"],\"rows\":[],\"rows_to_display\":[],\"isFooterExpandedInDashboard\":true,\"forceView\":\"1\",\"viewDataTable\":\"graphEvolution\"},\"isHidden\":false},{\"uniqueId\":\"widgetLivewidget\",\"parameters\":{\"module\":\"Live\",\"action\":\"widget\",\"widget\":1},\"isHidden\":false}],[{\"uniqueId\":\"widgetProfessionalServicespromoServices\",\"parameters\":{\"module\":\"ProfessionalServices\",\"action\":\"promoServices\",\"widget\":1},\"isHidden\":false},{\"uniqueId\":\"widgetCoreHomegetDonateForm\",\"parameters\":{\"module\":\"CoreHome\",\"action\":\"getDonateForm\",\"widget\":1},\"isHidden\":false},{\"uniqueId\":\"widgetReferrersgetWebsites\",\"parameters\":{\"module\":\"Referrers\",\"action\":\"getWebsites\",\"widget\":1},\"isHidden\":false}],[{\"uniqueId\":\"widgetUserCountryMapvisitorMap\",\"parameters\":{\"module\":\"UserCountryMap\",\"action\":\"visitorMap\",\"widget\":1},\"isHidden\":false},{\"uniqueId\":\"widgetDevicesDetectiongetBrowsers\",\"parameters\":{\"module\":\"DevicesDetection\",\"action\":\"getBrowsers\",\"widget\":1},\"isHidden\":false},{\"uniqueId\":\"widgetReferrersgetSearchEngines\",\"parameters\":{\"module\":\"Referrers\",\"action\":\"getSearchEngines\",\"widget\":1},\"isHidden\":false},{\"uniqueId\":\"widgetExampleRssWidgetrssPiwik\",\"parameters\":{\"module\":\"ExampleRssWidget\",\"action\":\"rssPiwik\",\"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_site_setting` CHANGE `idsite` `idsite` INTEGER(10) UNSIGNED NOT NULL;
ALTER TABLE `piwik_plugin_setting` ADD COLUMN `idplugin_setting` BIGINT UNSIGNED NOT NULL PRIMARY KEY AUTO_INCREMENT;
ALTER TABLE `piwik_site_setting` ADD COLUMN `idsite_setting` BIGINT UNSIGNED NOT NULL PRIMARY KEY AUTO_INCREMENT;
ALTER TABLE `piwik_log_profiling` ADD COLUMN `idprofiling` BIGINT UNSIGNED NOT NULL PRIMARY KEY AUTO_INCREMENT;
ALTER TABLE `piwik_access` CHANGE `access` `access` VARCHAR(50) NULL;
ALTER TABLE `piwik_access` DROP PRIMARY KEY;
ALTER TABLE `piwik_access` ADD COLUMN `idaccess` INT UNSIGNED NOT NULL PRIMARY KEY AUTO_INCREMENT;
ALTER TABLE `piwik_access` ADD INDEX index_loginidsite (`login`, `idsite`);
ALTER TABLE `piwik_user` ADD COLUMN `ts_password_modified` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP;
CREATE TABLE `piwik_report_subscriptions` (`idreport` INT(11) NOT NULL, `token` VARCHAR(100) NULL, `email` VARCHAR(100) NOT NULL, `ts_subscribed` TIMESTAMP DEFAULT CURRENT_TIMESTAMP, `ts_unsubscribed` TIMESTAMP NULL, PRIMARY KEY ( `idreport`, `email` )) ENGINE=InnoDB DEFAULT CHARSET=utf8;
ALTER TABLE `piwik_report_subscriptions` ADD UNIQUE KEY unique_token (`token`);
ALTER TABLE `piwik_user` CHANGE `ts_password_modified` `ts_password_modified` TIMESTAMP NULL;
UPDATE `piwik_user` SET ts_password_modified = NULL;
ALTER TABLE `piwik_site` ADD COLUMN `creator_login` VARCHAR(100) NULL;
# These console commands will be run:
./console plugin:activate "IntranetMeasurable"
# These SQL queries will be executed:
ALTER TABLE `piwik_goal` ADD COLUMN `event_value_as_revenue` tinyint(4) NOT NULL default '0';
ALTER TABLE `piwik_report` ADD COLUMN `evolution_graph_within_period` TINYINT(4) NOT NULL DEFAULT 0;
ALTER TABLE `piwik_report` ADD COLUMN `evolution_graph_period_n` INT(11) NULL;
ALTER TABLE `piwik_user` ADD COLUMN `twofactor_secret` VARCHAR(40) NOT NULL DEFAULT '';
CREATE TABLE `piwik_twofactor_recovery_code` (`idrecoverycode` BIGINT UNSIGNED NOT NULL AUTO_INCREMENT, `login` VARCHAR(100) NOT NULL, `recovery_code` VARCHAR(40) NOT NULL, PRIMARY KEY ( `idrecoverycode` )) ENGINE=InnoDB DEFAULT CHARSET=utf8;
# These console commands will be run:
./console plugin:activate "TwoFactorAuth"
./console plugin:deactivate "GoogleAuthenticator"
# These SQL queries will be executed:
CREATE TABLE `piwik_tracking_failure` (`idsite` BIGINT(20) UNSIGNED NOT NULL, `idfailure` SMALLINT UNSIGNED NOT NULL, `date_first_occurred` DATETIME NOT NULL, `request_url` MEDIUMTEXT NOT NULL, PRIMARY KEY ( `idsite`, `idfailure` )) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE `piwik_brute_force_log` (`id_brute_force_log` bigint(11) NOT NULL AUTO_INCREMENT, `ip_address` VARCHAR(60) DEFAULT NULL, `attempted_at` datetime NOT NULL, PRIMARY KEY ( `id_brute_force_log` )) ENGINE=InnoDB DEFAULT CHARSET=utf8;
ALTER TABLE `piwik_brute_force_log` ADD INDEX index_ip_address (`ip_address`);
ALTER TABLE `piwik_report` ADD COLUMN `period_param` VARCHAR(10) NULL;
# These console commands will be run:
./console plugin:activate "Tour"
# These SQL queries will be executed:
ALTER TABLE `piwik_goal` CHANGE `pattern_type` `pattern_type` varchar(25) NOT NULL;
CREATE TABLE `piwik_locks` (`key` VARCHAR(70) NOT NULL, `value` VARCHAR(255) NULL DEFAULT NULL, `expiry_time` BIGINT UNSIGNED DEFAULT 9999999999, PRIMARY KEY ( `key` )) ENGINE=InnoDB DEFAULT CHARSET=utf8;
# These console commands will be run:
./console plugin:deactivate "ExamplePlugin"
./console plugin:deactivate "ExampleAPI"
# These SQL queries will be executed:
UPDATE `piwik_option` SET option_value = 'https://download.db-ip.com/free/dbip-city-lite-2023-02.mmdb.gz' WHERE option_name = 'geoip2.loc_db_url' AND option_value = 'https://geolite.maxmind.com/download/geoip/database/GeoLite2-City.tar.gz';
UPDATE `piwik_option` SET option_value = 'https://download.db-ip.com/free/dbip-country-lite-2023-02.mmdb.gz' WHERE option_name = 'geoip2.loc_db_url' AND option_value = 'https://geolite.maxmind.com/download/geoip/database/GeoLite2-Country.tar.gz';
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_entry_idaction_url` INTEGER(11) UNSIGNED NULL DEFAULT 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/Zend/Cache Directory to delete: libs/Zend/Config Directory to delete: libs/bower_components/html5shiv Directory to delete: libs/bower_components/jquery/src Directory to delete: libs/pChart Directory to delete: libs/sparkline Directory to delete: vendor/container-interop/container-interop/docs Directory to delete: vendor/doctrine/annotations Directory to delete: vendor/doctrine/lexer Directory to delete: vendor/mnapoli Directory to delete: vendor/piwik/cache Directory to delete: vendor/piwik/decompress Directory to delete: vendor/piwik/ini Directory to delete: vendor/piwik/network Directory to delete: vendor/tedivm To delete all these directories at once, you can run this command: rm -Rf /var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/libs/Zend/Cache /var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/libs/Zend/Config /var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/libs/bower_components/html5shiv /var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/libs/bower_components/jquery/src /var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/libs/pChart /var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/libs/sparkline /var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/vendor/container-interop/container-interop/docs /var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/vendor/doctrine/annotations /var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/vendor/doctrine/lexer /var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/vendor/mnapoli /var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/vendor/piwik/cache /var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/vendor/piwik/decompress /var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/vendor/piwik/ini /var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/vendor/piwik/network /var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/vendor/tedivm |
Files were found in your Matomo, but we didn't expect them. --> Please delete these files to prevent errors. <-- File to delete: bower.json File to delete: composer.json File to delete: composer.lock File to delete: libs/Zend/Validate/EmailAddress.php File to delete: libs/bower_components/angular-animate/angular-animate.min.js.map File to delete: libs/bower_components/angular-animate/bower.json File to delete: libs/bower_components/angular-animate/package.json File to delete: libs/bower_components/angular-cookies/angular-cookies.min.js.map File to delete: libs/bower_components/angular-cookies/bower.json File to delete: libs/bower_components/angular-cookies/package.json File to delete: libs/bower_components/angular-mocks/bower.json File to delete: libs/bower_components/angular-mocks/package.json File to delete: libs/bower_components/angular-sanitize/angular-sanitize.min.js.map File to delete: libs/bower_components/angular-sanitize/bower.json File to delete: libs/bower_components/angular-sanitize/package.json File to delete: libs/bower_components/angular/angular.min.js.map File to delete: libs/bower_components/angular/bower.json File to delete: libs/bower_components/angular/package.json File to delete: libs/bower_components/chroma-js/bower.json File to delete: libs/bower_components/chroma-js/package.json File to delete: libs/bower_components/jQuery.dotdotdot/bower.json File to delete: libs/bower_components/jquery-mousewheel/bower.json 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/jquery-placeholder/bower.json File to delete: libs/bower_components/jquery-ui/bower.json File to delete: libs/bower_components/jquery-ui/composer.json File to delete: libs/bower_components/jquery-ui/package.json File to delete: libs/bower_components/jquery.scrollTo/bower.json File to delete: libs/bower_components/jquery.scrollTo/package.json File to delete: libs/bower_components/jquery/bower.json File to delete: libs/bower_components/jquery/dist/jquery.min.map File to delete: libs/bower_components/jqueryui-touch-punch/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/mousetrap/Gruntfile.js File to delete: libs/bower_components/mousetrap/package.json File to delete: libs/bower_components/ngDialog/bower.json File to delete: libs/bower_components/ngDialog/package.json File to delete: libs/bower_components/sprintf/bower.json File to delete: libs/bower_components/sprintf/dist/angular-sprintf.min.map File to delete: libs/bower_components/sprintf/dist/sprintf.min.map File to delete: libs/bower_components/sprintf/package.json File to delete: libs/bower_components/visibilityjs/bower.json File to delete: libs/javascript/json2.js File to delete: libs/jqplot/jqplot.core.js File to delete: libs/jqplot/jqplot.lineRenderer.js File to delete: libs/jqplot/jqplot.linearAxisRenderer.js File to delete: libs/jqplot/jqplot.themeEngine.js File to delete: libs/jqplot/plugins/jqplot.barRenderer.js File to delete: libs/jqplot/plugins/jqplot.pieRenderer.js File to delete: libs/jquery/MIT-LICENSE-smartbanner.txt File to delete: libs/jquery/jquery.smartbanner.js File to delete: libs/jquery/stylesheets/jquery.smartbanner.css File to delete: misc/How to install Piwik.html File to delete: misc/gpl-3.0.txt File to delete: misc/internal-docs/content-tracking.md File to delete: misc/others/api_internal_call.php File to delete: misc/others/api_rest_call.php File to delete: misc/others/download-count.txt File to delete: misc/others/iframeWidget_localhost.php File to delete: misc/others/stress.sh File to delete: misc/others/widget_example_lastvisits.html File to delete: vendor/container-interop/container-interop/composer.json File to delete: vendor/doctrine/cache/composer.json File to delete: vendor/doctrine/cache/phpunit.xml.dist File to delete: vendor/leafo/lessphp/composer.json File to delete: vendor/leafo/lessphp/docs/docs.md File to delete: vendor/monolog/monolog/CHANGELOG.mdown File to delete: vendor/monolog/monolog/README.mdown File to delete: vendor/monolog/monolog/composer.json File to delete: vendor/monolog/monolog/doc/01-usage.md File to delete: vendor/monolog/monolog/doc/02-handlers-formatters-processors.md File to delete: vendor/monolog/monolog/doc/03-utilities.md File to delete: vendor/monolog/monolog/doc/04-extending.md File to delete: vendor/monolog/monolog/doc/sockets.md File to delete: vendor/monolog/monolog/phpunit.xml.dist File to delete: vendor/mustangostang/spyc/README File to delete: vendor/mustangostang/spyc/composer.json File to delete: vendor/pear/archive_tar/composer.json File to delete: vendor/pear/archive_tar/docs/Archive_Tar.txt File to delete: vendor/pear/console_getopt/composer.json File to delete: vendor/pear/pear-core-minimal/composer.json File to delete: vendor/pear/pear-core-minimal/copy-from-pear-core.sh File to delete: vendor/pear/pear_exception/composer.json File to delete: vendor/php-di/invoker/composer.json File to delete: vendor/php-di/invoker/doc/parameter-resolvers.md File to delete: vendor/php-di/php-di/composer.json File to delete: vendor/php-di/php-di/phpunit.xml.dist 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/DefinitionDumper.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/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/device-detector/composer.json File to delete: vendor/piwik/piwik-php-tracker/LICENSE File to delete: vendor/piwik/piwik-php-tracker/PiwikTracker.php File to delete: vendor/piwik/piwik-php-tracker/README.md File to delete: vendor/piwik/piwik-php-tracker/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/composer.json File to delete: vendor/piwik/referrer-spam-blacklist/spammers.txt 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 File to delete: vendor/piwik/searchengine-and-social-list/composer.json File to delete: vendor/psr/log/composer.json File to delete: vendor/symfony/console/Symfony/Component/Console/composer.json File to delete: vendor/symfony/console/Symfony/Component/Console/phpunit.xml.dist File to delete: vendor/symfony/event-dispatcher/Symfony/Component/EventDispatcher/composer.json File to delete: vendor/symfony/event-dispatcher/Symfony/Component/EventDispatcher/phpunit.xml.dist File to delete: vendor/symfony/monolog-bridge/Symfony/Bridge/Monolog/composer.json File to delete: vendor/symfony/monolog-bridge/Symfony/Bridge/Monolog/phpunit.xml.dist File to delete: vendor/tecnickcom/tcpdf/CHANGELOG.TXT File to delete: vendor/tecnickcom/tcpdf/README.TXT File to delete: vendor/tecnickcom/tcpdf/composer.json File to delete: vendor/twig/twig/composer.json File to delete: vendor/twig/twig/phpunit.xml.dist To delete all these files at once, you can run this command: rm "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/bower.json" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/composer.json" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/composer.lock" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/libs/Zend/Validate/EmailAddress.php" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/libs/bower_components/angular-animate/angular-animate.min.js.map" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/libs/bower_components/angular-animate/bower.json" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/libs/bower_components/angular-animate/package.json" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/libs/bower_components/angular-cookies/angular-cookies.min.js.map" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/libs/bower_components/angular-cookies/bower.json" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/libs/bower_components/angular-cookies/package.json" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/libs/bower_components/angular-mocks/bower.json" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/libs/bower_components/angular-mocks/package.json" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/libs/bower_components/angular-sanitize/angular-sanitize.min.js.map" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/libs/bower_components/angular-sanitize/bower.json" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/libs/bower_components/angular-sanitize/package.json" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/libs/bower_components/angular/angular.min.js.map" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/libs/bower_components/angular/bower.json" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/libs/bower_components/angular/package.json" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/libs/bower_components/chroma-js/bower.json" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/libs/bower_components/chroma-js/package.json" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/libs/bower_components/jQuery.dotdotdot/bower.json" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/libs/bower_components/jquery-mousewheel/bower.json" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/libs/bower_components/jquery-placeholder/LICENSE-MIT.txt" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/libs/bower_components/jquery-placeholder/README.md" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/libs/bower_components/jquery-placeholder/bower.json" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/libs/bower_components/jquery-ui/bower.json" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/libs/bower_components/jquery-ui/composer.json" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/libs/bower_components/jquery-ui/package.json" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/libs/bower_components/jquery.scrollTo/bower.json" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/libs/bower_components/jquery.scrollTo/package.json" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/libs/bower_components/jquery/bower.json" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/libs/bower_components/jquery/dist/jquery.min.map" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/libs/bower_components/jqueryui-touch-punch/README.md" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/libs/bower_components/jqueryui-touch-punch/bower.json" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/libs/bower_components/jqueryui-touch-punch/jquery.ui.touch-punch.js" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/libs/bower_components/jqueryui-touch-punch/jquery.ui.touch-punch.min.js" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/libs/bower_components/mousetrap/Gruntfile.js" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/libs/bower_components/mousetrap/package.json" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/libs/bower_components/ngDialog/bower.json" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/libs/bower_components/ngDialog/package.json" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/libs/bower_components/sprintf/bower.json" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/libs/bower_components/sprintf/dist/angular-sprintf.min.map" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/libs/bower_components/sprintf/dist/sprintf.min.map" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/libs/bower_components/sprintf/package.json" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/libs/bower_components/visibilityjs/bower.json" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/libs/javascript/json2.js" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/libs/jqplot/jqplot.core.js" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/libs/jqplot/jqplot.lineRenderer.js" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/libs/jqplot/jqplot.linearAxisRenderer.js" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/libs/jqplot/jqplot.themeEngine.js" rm "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/libs/jqplot/plugins/jqplot.barRenderer.js" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/libs/jqplot/plugins/jqplot.pieRenderer.js" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/libs/jquery/MIT-LICENSE-smartbanner.txt" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/libs/jquery/jquery.smartbanner.js" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/libs/jquery/stylesheets/jquery.smartbanner.css" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/misc/How to install Piwik.html" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/misc/gpl-3.0.txt" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/misc/internal-docs/content-tracking.md" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/misc/others/api_internal_call.php" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/misc/others/api_rest_call.php" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/misc/others/download-count.txt" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/misc/others/iframeWidget_localhost.php" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/misc/others/stress.sh" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/misc/others/widget_example_lastvisits.html" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/vendor/container-interop/container-interop/composer.json" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/vendor/doctrine/cache/composer.json" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/vendor/doctrine/cache/phpunit.xml.dist" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/vendor/leafo/lessphp/composer.json" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/vendor/leafo/lessphp/docs/docs.md" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/vendor/monolog/monolog/CHANGELOG.mdown" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/vendor/monolog/monolog/README.mdown" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/vendor/monolog/monolog/composer.json" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/vendor/monolog/monolog/doc/01-usage.md" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/vendor/monolog/monolog/doc/02-handlers-formatters-processors.md" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/vendor/monolog/monolog/doc/03-utilities.md" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/vendor/monolog/monolog/doc/04-extending.md" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/vendor/monolog/monolog/doc/sockets.md" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/vendor/monolog/monolog/phpunit.xml.dist" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/vendor/mustangostang/spyc/README" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/vendor/mustangostang/spyc/composer.json" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/vendor/pear/archive_tar/composer.json" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/vendor/pear/archive_tar/docs/Archive_Tar.txt" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/vendor/pear/console_getopt/composer.json" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/vendor/pear/pear-core-minimal/composer.json" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/vendor/pear/pear-core-minimal/copy-from-pear-core.sh" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/vendor/pear/pear_exception/composer.json" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/vendor/php-di/invoker/composer.json" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/vendor/php-di/invoker/doc/parameter-resolvers.md" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/vendor/php-di/php-di/composer.json" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/vendor/php-di/php-di/phpunit.xml.dist" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/vendor/php-di/php-di/src/DI/Definition/AbstractFunctionCallDefinition.php" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/vendor/php-di/php-di/src/DI/Definition/Dumper/AliasDefinitionDumper.php" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/vendor/php-di/php-di/src/DI/Definition/Dumper/ArrayDefinitionDumper.php" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/vendor/php-di/php-di/src/DI/Definition/Dumper/DecoratorDefinitionDumper.php" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/vendor/php-di/php-di/src/DI/Definition/Dumper/DefinitionDumper.php" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/vendor/php-di/php-di/src/DI/Definition/Dumper/DefinitionDumperDispatcher.php" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/vendor/php-di/php-di/src/DI/Definition/Dumper/EnvironmentVariableDefinitionDumper.php" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/vendor/php-di/php-di/src/DI/Definition/Dumper/FactoryDefinitionDumper.php" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/vendor/php-di/php-di/src/DI/Definition/Dumper/StringDefinitionDumper.php" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/vendor/php-di/php-di/src/DI/Definition/Dumper/ValueDefinitionDumper.php" rm "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/vendor/php-di/php-di/src/DI/Definition/Resolver/AliasResolver.php" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/vendor/php-di/php-di/src/DI/Definition/Resolver/StringResolver.php" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/vendor/php-di/php-di/src/DI/Definition/Resolver/ValueResolver.php" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/vendor/php-di/php-di/src/DI/Reflection/CallableReflectionFactory.php" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/vendor/piwik/device-detector/composer.json" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/vendor/piwik/piwik-php-tracker/LICENSE" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/vendor/piwik/piwik-php-tracker/PiwikTracker.php" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/vendor/piwik/piwik-php-tracker/README.md" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/vendor/piwik/piwik-php-tracker/composer.json" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/vendor/piwik/referrer-spam-blacklist/CONTRIBUTING.md" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/vendor/piwik/referrer-spam-blacklist/README.md" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/vendor/piwik/referrer-spam-blacklist/composer.json" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/vendor/piwik/referrer-spam-blacklist/spammers.txt" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/vendor/piwik/searchengine-and-social-list/README.md" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/vendor/piwik/searchengine-and-social-list/SearchEngines.yml" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/vendor/piwik/searchengine-and-social-list/Socials.yml" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/vendor/piwik/searchengine-and-social-list/composer.json" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/vendor/psr/log/composer.json" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/vendor/symfony/console/Symfony/Component/Console/composer.json" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/vendor/symfony/console/Symfony/Component/Console/phpunit.xml.dist" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/vendor/symfony/event-dispatcher/Symfony/Component/EventDispatcher/composer.json" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/vendor/symfony/event-dispatcher/Symfony/Component/EventDispatcher/phpunit.xml.dist" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/vendor/symfony/monolog-bridge/Symfony/Bridge/Monolog/composer.json" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/vendor/symfony/monolog-bridge/Symfony/Bridge/Monolog/phpunit.xml.dist" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/vendor/tecnickcom/tcpdf/CHANGELOG.TXT" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/vendor/tecnickcom/tcpdf/README.TXT" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/vendor/tecnickcom/tcpdf/composer.json" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/vendor/twig/twig/composer.json" "/var/www/vhosts/piwik-stadt-schenefeld.webspeicherdienst.de/httpdocs/Piwik/vendor/twig/twig/phpunit.xml.dist" |