Matomo database will be upgraded from version 2.15.0 to the new version 3.14.1.
The following plugins will be updated: LanguagesManager, 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 /srv/data/web/vhosts/piwik.woecki.org/htdocs/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\",\"widget\":1,\"evolution_day_last_n\":180,\"isFooterExpandedInDashboard\":true,\"forceView\":\"1\",\"viewDataTable\":\"graphEvolution\"},\"isHidden\":false},{\"uniqueId\":\"widgetLivewidget\",\"parameters\":{\"module\":\"Live\",\"action\":\"widget\",\"widget\":1},\"isHidden\":false}],[{\"uniqueId\":\"widgetCoreHomegetDonateForm\",\"parameters\":{\"module\":\"CoreHome\",\"action\":\"getDonateForm\",\"widget\":1},\"isHidden\":true},{\"uniqueId\":\"widgetReferrersgetKeywords\",\"parameters\":{\"module\":\"Referrers\",\"action\":\"getKeywords\",\"widget\":1},\"isHidden\":false},{\"uniqueId\":\"widgetReferrersgetWebsites\",\"parameters\":{\"module\":\"Referrers\",\"action\":\"getWebsites\",\"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-2024-12.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-2024-12.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_user_language` ADD COLUMN `use_12_hour_clock` TINYINT(1) NOT NULL DEFAULT 0 AFTER `language`;
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/PiwikTracker/java Directory to delete: libs/Zend/Auth Directory to delete: libs/Zend/Cache Directory to delete: libs/Zend/Config Directory to delete: libs/Zend/Feed Directory to delete: libs/Zend/Http Directory to delete: libs/Zend/Log Directory to delete: libs/Zend/OpenId Directory to delete: libs/bower_components/html5shiv 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: libs/sparkline Directory to delete: libs/tcpdf Directory to delete: themes 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/symfony/yaml Directory to delete: vendor/tecnick.com Directory to delete: vendor/tedivm To delete all these directories at once, you can run this command: rm -Rf /srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/PiwikTracker/java /srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/Zend/Auth /srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/Zend/Cache /srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/Zend/Config /srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/Zend/Feed /srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/Zend/Http /srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/Zend/Log /srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/Zend/OpenId /srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/bower_components/html5shiv /srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/bower_components/jScrollPane/issues /srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/bower_components/jScrollPane/themes /srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/bower_components/jquery/src /srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/pChart /srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/sparkline /srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/tcpdf /srv/data/web/vhosts/piwik.woecki.org/htdocs/themes /srv/data/web/vhosts/piwik.woecki.org/htdocs/vendor/container-interop/container-interop/docs /srv/data/web/vhosts/piwik.woecki.org/htdocs/vendor/doctrine/annotations /srv/data/web/vhosts/piwik.woecki.org/htdocs/vendor/doctrine/lexer /srv/data/web/vhosts/piwik.woecki.org/htdocs/vendor/mnapoli /srv/data/web/vhosts/piwik.woecki.org/htdocs/vendor/piwik/cache /srv/data/web/vhosts/piwik.woecki.org/htdocs/vendor/piwik/decompress /srv/data/web/vhosts/piwik.woecki.org/htdocs/vendor/piwik/ini /srv/data/web/vhosts/piwik.woecki.org/htdocs/vendor/piwik/network /srv/data/web/vhosts/piwik.woecki.org/htdocs/vendor/symfony/yaml /srv/data/web/vhosts/piwik.woecki.org/htdocs/vendor/tecnick.com /srv/data/web/vhosts/piwik.woecki.org/htdocs/vendor/tedivm |
Files were found in your Matomo, but we didn't expect them. --> Please delete these files to prevent errors. <-- File to delete: README File to delete: bower.json File to delete: composer.json File to delete: composer.lock File to delete: config/config.ini.sample.php File to delete: config/global.ini.auto-backup-before-update.php File to delete: index.html File to delete: js/README File to delete: lang/am.php File to delete: lang/ar.php File to delete: lang/be.php File to delete: lang/bg.php File to delete: lang/ca.php File to delete: lang/cs.php File to delete: lang/cy.php File to delete: lang/da.php File to delete: lang/de.php File to delete: lang/el.php File to delete: lang/en.php File to delete: lang/es.php File to delete: lang/et.php File to delete: lang/eu.php File to delete: lang/fa.php File to delete: lang/fi.php File to delete: lang/fr.php File to delete: lang/gl.php File to delete: lang/he.php File to delete: lang/hr.php File to delete: lang/hu.php File to delete: lang/id.php File to delete: lang/is.php File to delete: lang/it.php File to delete: lang/ja.php File to delete: lang/ka.php File to delete: lang/ko.php File to delete: lang/lt.php File to delete: lang/lv.php File to delete: lang/nb.php File to delete: lang/nl.php File to delete: lang/nn.php File to delete: lang/pl.php File to delete: lang/pt-br.php File to delete: lang/pt.php File to delete: lang/ro.php File to delete: lang/ru.php File to delete: lang/sk.php File to delete: lang/sl.php File to delete: lang/sq.php File to delete: lang/sr.php File to delete: lang/sv.php File to delete: lang/te.php File to delete: lang/th.php File to delete: lang/tr.php File to delete: lang/uk.php File to delete: lang/zh-cn.php File to delete: lang/zh-tw.php File to delete: libs/Archive_Tar/Tar.php File to delete: libs/PEAR.php File to delete: libs/PEAR/Exception.php File to delete: libs/PEAR/FixPHP5PEARWarnings.php File to delete: libs/PEAR/LICENSE File to delete: libs/PEAR5.php File to delete: libs/PclZip/lgpl-2.1.txt File to delete: libs/PclZip/pclzip.lib.php File to delete: libs/PiwikTracker/LICENSE File to delete: libs/PiwikTracker/LICENSE.txt File to delete: libs/PiwikTracker/README.md File to delete: libs/PiwikTracker/composer.json File to delete: libs/README_LIBS File to delete: libs/UserAgentParser/README File to delete: libs/UserAgentParser/README.md File to delete: libs/UserAgentParser/UserAgentParser.php File to delete: libs/UserAgentParser/UserAgentParser.test.php File to delete: libs/Zend/Uri.php File to delete: libs/Zend/Uri/Exception.php File to delete: libs/Zend/Uri/Http.php File to delete: libs/Zend/Validate/Barcode.php File to delete: libs/Zend/Validate/Barcode/AdapterAbstract.php File to delete: libs/Zend/Validate/Barcode/AdapterInterface.php File to delete: libs/Zend/Validate/Barcode/Code25.php File to delete: libs/Zend/Validate/Barcode/Code25interleaved.php File to delete: libs/Zend/Validate/Barcode/Code39.php File to delete: libs/Zend/Validate/Barcode/Code39ext.php File to delete: libs/Zend/Validate/Barcode/Code93.php File to delete: libs/Zend/Validate/Barcode/Code93ext.php File to delete: libs/Zend/Validate/Barcode/Ean12.php File to delete: libs/Zend/Validate/Barcode/Ean13.php File to delete: libs/Zend/Validate/Barcode/Ean14.php File to delete: libs/Zend/Validate/Barcode/Ean18.php File to delete: libs/Zend/Validate/Barcode/Ean2.php File to delete: libs/Zend/Validate/Barcode/Ean5.php File to delete: libs/Zend/Validate/Barcode/Ean8.php File to delete: libs/Zend/Validate/Barcode/Gtin12.php File to delete: libs/Zend/Validate/Barcode/Gtin13.php File to delete: libs/Zend/Validate/Barcode/Gtin14.php File to delete: libs/Zend/Validate/Barcode/Identcode.php File to delete: libs/Zend/Validate/Barcode/Intelligentmail.php File to delete: libs/Zend/Validate/Barcode/Issn.php File to delete: libs/Zend/Validate/Barcode/Itf14.php File to delete: libs/Zend/Validate/Barcode/Leitcode.php File to delete: libs/Zend/Validate/Barcode/Planet.php File to delete: libs/Zend/Validate/Barcode/Postnet.php File to delete: libs/Zend/Validate/Barcode/Royalmail.php File to delete: libs/Zend/Validate/Barcode/Sscc.php File to delete: libs/Zend/Validate/Barcode/Upca.php File to delete: libs/Zend/Validate/Barcode/Upce.php File to delete: libs/Zend/Validate/Db/Abstract.php File to delete: libs/Zend/Validate/Db/NoRecordExists.php File to delete: libs/Zend/Validate/Db/RecordExists.php File to delete: libs/Zend/Validate/EmailAddress.php File to delete: libs/Zend/Validate/Sitemap/Changefreq.php File to delete: libs/Zend/Validate/Sitemap/Lastmod.php File to delete: libs/Zend/Validate/Sitemap/Loc.php File to delete: libs/Zend/Validate/Sitemap/Priority.php File to delete: libs/angularjs/LICENSE File to delete: libs/angularjs/angular-animate.js File to delete: libs/angularjs/angular-animate.min.js File to delete: libs/angularjs/angular-cookies.js File to delete: libs/angularjs/angular-cookies.min.js File to delete: libs/angularjs/angular-csp.css File to delete: libs/angularjs/angular-loader.js File to delete: libs/angularjs/angular-loader.min.js File to delete: libs/angularjs/angular-mocks.js File to delete: libs/angularjs/angular-resource.js File to delete: libs/angularjs/angular-resource.min.js File to delete: libs/angularjs/angular-route.js File to delete: libs/angularjs/angular-route.min.js File to delete: libs/angularjs/angular-sanitize.js File to delete: libs/angularjs/angular-sanitize.min.js File to delete: libs/angularjs/angular-scenario.js File to delete: libs/angularjs/angular-touch.js File to delete: libs/angularjs/angular-touch.min.js File to delete: libs/angularjs/angular.js File to delete: libs/angularjs/angular.min.js File to delete: libs/angularjs/errors.json File to delete: libs/angularjs/version.json File to delete: libs/angularjs/version.txt 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/jScrollPane/GPL-LICENSE.txt File to delete: libs/bower_components/jScrollPane/ajax.html File to delete: libs/bower_components/jScrollPane/ajax_content.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/iframe.html 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/image.html File to delete: libs/bower_components/jScrollPane/image2.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/runeimp.html File to delete: libs/bower_components/jScrollPane/runeimp2.html File to delete: libs/bower_components/jScrollPane/scroll_on_left.html File to delete: libs/bower_components/jScrollPane/scroll_to.html File to delete: libs/bower_components/jScrollPane/scroll_to_animate.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/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-placeholder/demo.html 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/MIT-LICENSE.txt 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/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/cssmin/MIT-LICENSE.txt File to delete: libs/cssmin/cssmin.php File to delete: libs/html5shiv/html5shiv.js File to delete: libs/javascript/json2.js File to delete: libs/javascript/sprintf.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-jquery.txt File to delete: libs/jquery/MIT-LICENSE-jqueryui.txt File to delete: libs/jquery/MIT-LICENSE-placeholder.txt File to delete: libs/jquery/MIT-LICENSE-scrollto.txt File to delete: libs/jquery/MIT-LICENSE-smartbanner.txt File to delete: libs/jquery/MIT-LICENSE-tooltip.txt File to delete: libs/jquery/jquery-ui.js File to delete: libs/jquery/jquery.history.js File to delete: libs/jquery/jquery.js File to delete: libs/jquery/jquery.jscrollpane.js File to delete: libs/jquery/jquery.mousewheel.js File to delete: libs/jquery/jquery.placeholder.js File to delete: libs/jquery/jquery.scrollTo.js File to delete: libs/jquery/jquery.smartbanner.js File to delete: libs/jquery/jquery.tooltip.js File to delete: libs/jquery/stylesheets/jquery.smartbanner.css File to delete: libs/jquery/themes/base/jquery-ui.css File to delete: libs/jsmin/jsmin.php File to delete: libs/swfobject/MIT-LICENSE.txt File to delete: libs/swfobject/expressInstall.swf File to delete: libs/swfobject/swfobject.js File to delete: misc/ExamplePiwikTracker.php File to delete: misc/How to install Piwik.html File to delete: misc/api_internal_call.php File to delete: misc/api_rest_call.php File to delete: misc/cron/archive.windows.ps1 File to delete: misc/crossdomain.xml File to delete: misc/download-count.txt File to delete: misc/generateDoc.bat File to delete: misc/generateDoc.sh File to delete: misc/gpl-3.0.txt File to delete: misc/iframeWidget.htm File to delete: misc/iframeWidget_localhost.php File to delete: misc/internal-docs/content-tracking.md File to delete: misc/log-analytics/README File to delete: misc/others/api_internal_call.php File to delete: misc/others/api_rest_call.php File to delete: misc/others/cli-script-bootstrap.php File to delete: misc/others/crossdomain.xml File to delete: misc/others/db-schema-README File to delete: misc/others/db-schema.png File to delete: misc/others/db-schema.xml File to delete: misc/others/diagram_general_request.jpg File to delete: misc/others/diagram_general_request.vsd File to delete: misc/others/download-count.txt File to delete: misc/others/generateDoc.bat File to delete: misc/others/generateDoc.sh File to delete: misc/others/iframeWidget.htm File to delete: misc/others/iframeWidget_localhost.php File to delete: misc/others/phpdoc-config.ini File to delete: misc/others/phpstorm-codestyles/Piwik_codestyle.xml File to delete: misc/others/phpstorm-codestyles/README.md File to delete: misc/others/stress.sh File to delete: misc/others/svn-props-to-set-new-files.svnprops File to delete: misc/others/widget_example_lastvisits.html File to delete: misc/phpdoc-config.ini File to delete: misc/phpstorm-codestyles/Piwik_codestyle.xml File to delete: misc/phpstorm-codestyles/README.md File to delete: misc/proxy-hide-piwik-url/piwik.php File to delete: misc/stress.sh File to delete: misc/svn-props-to-set-new-files.svnprops File to delete: misc/test_cookies_GenerateHundredsWebsitesAndVisits.php File to delete: misc/test_generateLotsVisitsWebsites.php File to delete: misc/tracker_simpleImageTracker.php File to delete: misc/uninstall-delete-piwik-directory.php File to delete: misc/widget_example_lastvisits.html File to delete: tests/README.txt 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/src/PEAR/ErrorStack5.php File to delete: vendor/pear/pear-core-minimal/src/PEAR5.php 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/device-detector/misc/readme-report.php File to delete: vendor/piwik/device-detector/misc/test.php File to delete: vendor/piwik/device-detector/phpunit.xml.dist File to delete: vendor/piwik/device-detector/regexes/browsers.yml File to delete: vendor/piwik/device-detector/regexes/mobiles.yml File to delete: vendor/piwik/device-detector/regexes/televisions.yml 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/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/twig/twig/composer.json File to delete: vendor/twig/twig/ext/twig/LICENSE File to delete: vendor/twig/twig/lib/Twig/Node/SandboxedModule.php File to delete: vendor/twig/twig/phpunit.xml.dist File to delete: libs/bower_components/jquery-ui/ui/.jshintrc File to delete: vendor/monolog/monolog/.php_cs File to delete: vendor/pear/archive_tar/.travis.sh File to delete: vendor/piwik/device-detector/.php_cs File to delete: vendor/twig/twig/.editorconfig To delete all these files at once, you can run this command: rm "/srv/data/web/vhosts/piwik.woecki.org/htdocs/README" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/bower.json" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/composer.json" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/composer.lock" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/config/config.ini.sample.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/config/global.ini.auto-backup-before-update.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/index.html" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/js/README" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/lang/am.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/lang/ar.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/lang/be.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/lang/bg.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/lang/ca.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/lang/cs.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/lang/cy.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/lang/da.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/lang/de.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/lang/el.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/lang/en.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/lang/es.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/lang/et.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/lang/eu.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/lang/fa.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/lang/fi.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/lang/fr.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/lang/gl.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/lang/he.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/lang/hr.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/lang/hu.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/lang/id.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/lang/is.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/lang/it.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/lang/ja.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/lang/ka.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/lang/ko.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/lang/lt.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/lang/lv.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/lang/nb.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/lang/nl.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/lang/nn.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/lang/pl.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/lang/pt-br.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/lang/pt.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/lang/ro.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/lang/ru.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/lang/sk.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/lang/sl.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/lang/sq.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/lang/sr.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/lang/sv.php" rm "/srv/data/web/vhosts/piwik.woecki.org/htdocs/lang/te.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/lang/th.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/lang/tr.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/lang/uk.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/lang/zh-cn.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/lang/zh-tw.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/Archive_Tar/Tar.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/PEAR.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/PEAR/Exception.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/PEAR/FixPHP5PEARWarnings.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/PEAR/LICENSE" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/PEAR5.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/PclZip/lgpl-2.1.txt" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/PclZip/pclzip.lib.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/PiwikTracker/LICENSE" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/PiwikTracker/LICENSE.txt" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/PiwikTracker/README.md" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/PiwikTracker/composer.json" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/README_LIBS" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/UserAgentParser/README" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/UserAgentParser/README.md" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/UserAgentParser/UserAgentParser.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/UserAgentParser/UserAgentParser.test.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/Zend/Uri.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/Zend/Uri/Exception.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/Zend/Uri/Http.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/Zend/Validate/Barcode.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/Zend/Validate/Barcode/AdapterAbstract.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/Zend/Validate/Barcode/AdapterInterface.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/Zend/Validate/Barcode/Code25.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/Zend/Validate/Barcode/Code25interleaved.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/Zend/Validate/Barcode/Code39.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/Zend/Validate/Barcode/Code39ext.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/Zend/Validate/Barcode/Code93.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/Zend/Validate/Barcode/Code93ext.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/Zend/Validate/Barcode/Ean12.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/Zend/Validate/Barcode/Ean13.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/Zend/Validate/Barcode/Ean14.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/Zend/Validate/Barcode/Ean18.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/Zend/Validate/Barcode/Ean2.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/Zend/Validate/Barcode/Ean5.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/Zend/Validate/Barcode/Ean8.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/Zend/Validate/Barcode/Gtin12.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/Zend/Validate/Barcode/Gtin13.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/Zend/Validate/Barcode/Gtin14.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/Zend/Validate/Barcode/Identcode.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/Zend/Validate/Barcode/Intelligentmail.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/Zend/Validate/Barcode/Issn.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/Zend/Validate/Barcode/Itf14.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/Zend/Validate/Barcode/Leitcode.php" rm "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/Zend/Validate/Barcode/Planet.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/Zend/Validate/Barcode/Postnet.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/Zend/Validate/Barcode/Royalmail.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/Zend/Validate/Barcode/Sscc.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/Zend/Validate/Barcode/Upca.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/Zend/Validate/Barcode/Upce.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/Zend/Validate/Db/Abstract.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/Zend/Validate/Db/NoRecordExists.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/Zend/Validate/Db/RecordExists.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/Zend/Validate/EmailAddress.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/Zend/Validate/Sitemap/Changefreq.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/Zend/Validate/Sitemap/Lastmod.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/Zend/Validate/Sitemap/Loc.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/Zend/Validate/Sitemap/Priority.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/angularjs/LICENSE" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/angularjs/angular-animate.js" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/angularjs/angular-animate.min.js" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/angularjs/angular-cookies.js" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/angularjs/angular-cookies.min.js" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/angularjs/angular-csp.css" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/angularjs/angular-loader.js" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/angularjs/angular-loader.min.js" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/angularjs/angular-mocks.js" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/angularjs/angular-resource.js" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/angularjs/angular-resource.min.js" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/angularjs/angular-route.js" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/angularjs/angular-route.min.js" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/angularjs/angular-sanitize.js" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/angularjs/angular-sanitize.min.js" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/angularjs/angular-scenario.js" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/angularjs/angular-touch.js" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/angularjs/angular-touch.min.js" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/angularjs/angular.js" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/angularjs/angular.min.js" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/angularjs/errors.json" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/angularjs/version.json" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/angularjs/version.txt" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/bower_components/angular-animate/angular-animate.min.js.map" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/bower_components/angular-animate/bower.json" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/bower_components/angular-animate/package.json" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/bower_components/angular-cookies/angular-cookies.min.js.map" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/bower_components/angular-cookies/bower.json" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/bower_components/angular-cookies/package.json" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/bower_components/angular-mocks/bower.json" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/bower_components/angular-mocks/package.json" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/bower_components/angular-sanitize/angular-sanitize.min.js.map" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/bower_components/angular-sanitize/bower.json" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/bower_components/angular-sanitize/package.json" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/bower_components/angular/angular.min.js.map" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/bower_components/angular/bower.json" rm "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/bower_components/angular/package.json" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/bower_components/chroma-js/bower.json" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/bower_components/chroma-js/package.json" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/bower_components/jQuery.dotdotdot/bower.json" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/bower_components/jScrollPane/GPL-LICENSE.txt" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/bower_components/jScrollPane/ajax.html" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/bower_components/jScrollPane/ajax_content.html" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/bower_components/jScrollPane/anchors.html" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/bower_components/jScrollPane/api.html" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/bower_components/jScrollPane/arrow_hover.html" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/bower_components/jScrollPane/arrow_positions.html" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/bower_components/jScrollPane/arrows.html" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/bower_components/jScrollPane/auto_reinitialise.html" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/bower_components/jScrollPane/basic.html" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/bower_components/jScrollPane/caps.html" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/bower_components/jScrollPane/changelog.html" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/bower_components/jScrollPane/destroy.html" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/bower_components/jScrollPane/drag_size.html" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/bower_components/jScrollPane/dynamic_content.html" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/bower_components/jScrollPane/dynamic_height.html" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/bower_components/jScrollPane/dynamic_width.html" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/bower_components/jScrollPane/events.html" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/bower_components/jScrollPane/faqs.html" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/bower_components/jScrollPane/fixed_width.html" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/bower_components/jScrollPane/focus.html" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/bower_components/jScrollPane/fullpage_scroll.html" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/bower_components/jScrollPane/iframe.html" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/bower_components/jScrollPane/iframe2.html" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/bower_components/jScrollPane/iframe_content1.html" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/bower_components/jScrollPane/iframe_content2.html" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/bower_components/jScrollPane/iframe_content3.html" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/bower_components/jScrollPane/iframe_content4.html" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/bower_components/jScrollPane/image.html" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/bower_components/jScrollPane/image2.html" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/bower_components/jScrollPane/index.html" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/bower_components/jScrollPane/invisibles.html" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/bower_components/jScrollPane/known_issues.html" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/bower_components/jScrollPane/less_basic.html" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/bower_components/jScrollPane/mwheel_intent.html" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/bower_components/jScrollPane/override_animate.html" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/bower_components/jScrollPane/runeimp.html" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/bower_components/jScrollPane/runeimp2.html" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/bower_components/jScrollPane/scroll_on_left.html" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/bower_components/jScrollPane/scroll_to.html" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/bower_components/jScrollPane/scroll_to_animate.html" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/bower_components/jScrollPane/settings.html" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/bower_components/jScrollPane/short.html" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/bower_components/jScrollPane/v1.html" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/bower_components/jquery-mousewheel/bower.json" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/bower_components/jquery-placeholder/LICENSE-MIT.txt" rm "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/bower_components/jquery-placeholder/README.md" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/bower_components/jquery-placeholder/bower.json" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/bower_components/jquery-placeholder/demo.html" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/bower_components/jquery-ui/bower.json" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/bower_components/jquery-ui/composer.json" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/bower_components/jquery-ui/package.json" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/bower_components/jquery.scrollTo/bower.json" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/bower_components/jquery.scrollTo/package.json" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/bower_components/jquery/MIT-LICENSE.txt" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/bower_components/jquery/bower.json" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/bower_components/jquery/dist/jquery.min.map" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/bower_components/mousetrap/Gruntfile.js" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/bower_components/mousetrap/package.json" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/bower_components/ngDialog/bower.json" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/bower_components/ngDialog/package.json" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/bower_components/sprintf/bower.json" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/bower_components/sprintf/dist/angular-sprintf.min.map" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/bower_components/sprintf/dist/sprintf.min.map" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/bower_components/sprintf/package.json" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/bower_components/visibilityjs/bower.json" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/cssmin/MIT-LICENSE.txt" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/cssmin/cssmin.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/html5shiv/html5shiv.js" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/javascript/json2.js" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/javascript/sprintf.js" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/jqplot/jqplot.core.js" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/jqplot/jqplot.lineRenderer.js" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/jqplot/jqplot.linearAxisRenderer.js" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/jqplot/jqplot.themeEngine.js" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/jqplot/plugins/jqplot.barRenderer.js" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/jqplot/plugins/jqplot.pieRenderer.js" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/jquery/MIT-LICENSE-jquery.txt" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/jquery/MIT-LICENSE-jqueryui.txt" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/jquery/MIT-LICENSE-placeholder.txt" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/jquery/MIT-LICENSE-scrollto.txt" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/jquery/MIT-LICENSE-smartbanner.txt" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/jquery/MIT-LICENSE-tooltip.txt" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/jquery/jquery-ui.js" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/jquery/jquery.history.js" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/jquery/jquery.js" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/jquery/jquery.jscrollpane.js" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/jquery/jquery.mousewheel.js" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/jquery/jquery.placeholder.js" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/jquery/jquery.scrollTo.js" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/jquery/jquery.smartbanner.js" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/jquery/jquery.tooltip.js" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/jquery/stylesheets/jquery.smartbanner.css" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/jquery/themes/base/jquery-ui.css" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/jsmin/jsmin.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/swfobject/MIT-LICENSE.txt" rm "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/swfobject/expressInstall.swf" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/swfobject/swfobject.js" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/misc/ExamplePiwikTracker.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/misc/How to install Piwik.html" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/misc/api_internal_call.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/misc/api_rest_call.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/misc/cron/archive.windows.ps1" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/misc/crossdomain.xml" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/misc/download-count.txt" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/misc/generateDoc.bat" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/misc/generateDoc.sh" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/misc/gpl-3.0.txt" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/misc/iframeWidget.htm" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/misc/iframeWidget_localhost.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/misc/internal-docs/content-tracking.md" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/misc/log-analytics/README" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/misc/others/api_internal_call.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/misc/others/api_rest_call.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/misc/others/cli-script-bootstrap.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/misc/others/crossdomain.xml" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/misc/others/db-schema-README" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/misc/others/db-schema.png" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/misc/others/db-schema.xml" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/misc/others/diagram_general_request.jpg" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/misc/others/diagram_general_request.vsd" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/misc/others/download-count.txt" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/misc/others/generateDoc.bat" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/misc/others/generateDoc.sh" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/misc/others/iframeWidget.htm" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/misc/others/iframeWidget_localhost.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/misc/others/phpdoc-config.ini" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/misc/others/phpstorm-codestyles/Piwik_codestyle.xml" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/misc/others/phpstorm-codestyles/README.md" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/misc/others/stress.sh" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/misc/others/svn-props-to-set-new-files.svnprops" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/misc/others/widget_example_lastvisits.html" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/misc/phpdoc-config.ini" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/misc/phpstorm-codestyles/Piwik_codestyle.xml" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/misc/phpstorm-codestyles/README.md" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/misc/proxy-hide-piwik-url/piwik.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/misc/stress.sh" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/misc/svn-props-to-set-new-files.svnprops" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/misc/test_cookies_GenerateHundredsWebsitesAndVisits.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/misc/test_generateLotsVisitsWebsites.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/misc/tracker_simpleImageTracker.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/misc/uninstall-delete-piwik-directory.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/misc/widget_example_lastvisits.html" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/tests/README.txt" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/vendor/container-interop/container-interop/composer.json" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/vendor/doctrine/cache/composer.json" rm "/srv/data/web/vhosts/piwik.woecki.org/htdocs/vendor/doctrine/cache/phpunit.xml.dist" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/vendor/leafo/lessphp/composer.json" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/vendor/leafo/lessphp/docs/docs.md" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/vendor/monolog/monolog/CHANGELOG.mdown" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/vendor/monolog/monolog/README.mdown" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/vendor/monolog/monolog/composer.json" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/vendor/monolog/monolog/doc/01-usage.md" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/vendor/monolog/monolog/doc/02-handlers-formatters-processors.md" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/vendor/monolog/monolog/doc/03-utilities.md" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/vendor/monolog/monolog/doc/04-extending.md" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/vendor/monolog/monolog/doc/sockets.md" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/vendor/monolog/monolog/phpunit.xml.dist" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/vendor/mustangostang/spyc/README" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/vendor/mustangostang/spyc/composer.json" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/vendor/pear/archive_tar/composer.json" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/vendor/pear/archive_tar/docs/Archive_Tar.txt" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/vendor/pear/console_getopt/composer.json" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/vendor/pear/pear-core-minimal/composer.json" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/vendor/pear/pear-core-minimal/src/PEAR/ErrorStack5.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/vendor/pear/pear-core-minimal/src/PEAR5.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/vendor/pear/pear_exception/composer.json" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/vendor/php-di/invoker/composer.json" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/vendor/php-di/invoker/doc/parameter-resolvers.md" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/vendor/php-di/php-di/composer.json" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/vendor/php-di/php-di/phpunit.xml.dist" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/vendor/php-di/php-di/src/DI/Definition/AbstractFunctionCallDefinition.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/vendor/php-di/php-di/src/DI/Definition/Dumper/AliasDefinitionDumper.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/vendor/php-di/php-di/src/DI/Definition/Dumper/ArrayDefinitionDumper.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/vendor/php-di/php-di/src/DI/Definition/Dumper/DecoratorDefinitionDumper.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/vendor/php-di/php-di/src/DI/Definition/Dumper/DefinitionDumper.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/vendor/php-di/php-di/src/DI/Definition/Dumper/DefinitionDumperDispatcher.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/vendor/php-di/php-di/src/DI/Definition/Dumper/EnvironmentVariableDefinitionDumper.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/vendor/php-di/php-di/src/DI/Definition/Dumper/FactoryDefinitionDumper.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/vendor/php-di/php-di/src/DI/Definition/Dumper/StringDefinitionDumper.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/vendor/php-di/php-di/src/DI/Definition/Dumper/ValueDefinitionDumper.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/vendor/php-di/php-di/src/DI/Definition/Resolver/AliasResolver.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/vendor/php-di/php-di/src/DI/Definition/Resolver/StringResolver.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/vendor/php-di/php-di/src/DI/Definition/Resolver/ValueResolver.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/vendor/php-di/php-di/src/DI/Reflection/CallableReflectionFactory.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/vendor/piwik/device-detector/composer.json" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/vendor/piwik/device-detector/misc/readme-report.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/vendor/piwik/device-detector/misc/test.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/vendor/piwik/device-detector/phpunit.xml.dist" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/vendor/piwik/device-detector/regexes/browsers.yml" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/vendor/piwik/device-detector/regexes/mobiles.yml" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/vendor/piwik/device-detector/regexes/televisions.yml" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/vendor/piwik/referrer-spam-blacklist/README.md" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/vendor/piwik/referrer-spam-blacklist/composer.json" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/vendor/piwik/referrer-spam-blacklist/spammers.txt" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/vendor/psr/log/composer.json" rm "/srv/data/web/vhosts/piwik.woecki.org/htdocs/vendor/symfony/console/Symfony/Component/Console/composer.json" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/vendor/symfony/console/Symfony/Component/Console/phpunit.xml.dist" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/vendor/symfony/event-dispatcher/Symfony/Component/EventDispatcher/composer.json" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/vendor/symfony/event-dispatcher/Symfony/Component/EventDispatcher/phpunit.xml.dist" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/vendor/symfony/monolog-bridge/Symfony/Bridge/Monolog/composer.json" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/vendor/symfony/monolog-bridge/Symfony/Bridge/Monolog/phpunit.xml.dist" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/vendor/twig/twig/composer.json" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/vendor/twig/twig/ext/twig/LICENSE" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/vendor/twig/twig/lib/Twig/Node/SandboxedModule.php" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/vendor/twig/twig/phpunit.xml.dist" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/libs/bower_components/jquery-ui/ui/.jshintrc" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/vendor/monolog/monolog/.php_cs" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/vendor/pear/archive_tar/.travis.sh" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/vendor/piwik/device-detector/.php_cs" "/srv/data/web/vhosts/piwik.woecki.org/htdocs/vendor/twig/twig/.editorconfig" |