Piwik database will be upgraded from version 2.11.1 to the new version 3.0.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.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 Piwik installations
If you have a large Piwik database, updates might take too long to run in the browser. In this situation, you can execute the updates from your command line:
php /mnt/web524/b2/97/5955397/htdocs/Piwik_02/console core:update
If you manage a high traffic Piwik server, we recommend to momentarily disable visitor Tracking and put the Piwik User Interface in maintenance mode.
›Click here to view and copy the list of SQL queries that will get executed
#FYI: these are the SQL queries that will be executed to upgrade your database to Piwik 3.0.1
delete from `option` where option_name like '%defaultReport%' and option_value='';
DROP TABLE IF EXISTS `site_setting`;
CREATE TABLE `site_setting` (`idsite` INTEGER(10) UNSIGNED NOT NULL AUTO_INCREMENT, `setting_name` VARCHAR(255) NOT NULL, `setting_value` LONGTEXT NOT NULL, PRIMARY KEY ( `idsite`, `setting_name` )) ENGINE=InnoDB DEFAULT CHARSET=utf8;
ALTER TABLE `site` ADD COLUMN `exclude_unknown_urls` TINYINT(1) DEFAULT 0 AFTER `currency`;
CREATE TABLE `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 `plugin_setting` ADD INDEX index_plugin_name_user_login (`plugin_name`, `user_login`);
DELETE FROM `option` WHERE `option_name` like "Plugin_%_Settings";
DROP TABLE IF EXISTS `site_setting`;
CREATE TABLE `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 `site_setting` ADD INDEX(idsite, plugin_name);
ALTER TABLE `log_visit` CHANGE `idvisit` `idvisit` BIGINT(10) UNSIGNED NOT NULL AUTO_INCREMENT;
ALTER TABLE `log_conversion_item` CHANGE `idvisit` `idvisit` BIGINT(10) UNSIGNED NOT NULL;
ALTER TABLE `log_conversion` CHANGE `idvisit` `idvisit` BIGINT(10) UNSIGNED NOT NULL, CHANGE `idlink_va` `idlink_va` BIGINT(10) UNSIGNED default NULL;
ALTER TABLE `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 `user` CHANGE `password` `password` VARCHAR(255) NOT NULL;
ALTER TABLE `user_language` ADD COLUMN `use_12_hour_clock` TINYINT(1) NOT NULL DEFAULT 0 AFTER `language`;
ALTER TABLE `goal` ADD COLUMN `description` VARCHAR(255) NOT NULL DEFAULT '' AFTER `name`;
ALTER TABLE `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;
ALTER TABLE `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;
ALTER TABLE `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 Piwik?
If you need support to upgrade your Piwik, the creators of Piwik are here to help you make the Piwik upgrade a success and provide all instructions, best practises and ongoing support. Contact the Piwik experts to get started upgrading your Piwik 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 Piwik but we didn't expect them.<br/>--> Please delete these directories to prevent errors. <--<br/><br/>Directory to delete: libs/bower_components/jScrollPane/issues<br/>Directory to delete: libs/bower_components/jScrollPane/themes<br/>Directory to delete: libs/bower_components/jquery/src<br/>Directory to delete: libs/pChart2.1.3<br/>Directory to delete: libs/tcpdf<br/>Directory to delete: vendor/doctrine/annotations<br/>Directory to delete: vendor/doctrine/lexer<br/>Directory to delete: vendor/mnapoli<br/>Directory to delete: vendor/myclabs<br/>Directory to delete: vendor/symfony/event-dispatcher/Symfony/Component/EventDispatcher/Tests<br/>Directory to delete: vendor/symfony/monolog-bridge/Symfony/Bridge/Monolog/Tests<br/><br/><br/>To delete all these directories at once, you can run this command:<br/>rm -Rf /mnt/web524/b2/97/5955397/htdocs/Piwik_02/libs/bower_components/jScrollPane/issues /mnt/web524/b2/97/5955397/htdocs/Piwik_02/libs/bower_components/jScrollPane/themes /mnt/web524/b2/97/5955397/htdocs/Piwik_02/libs/bower_components/jquery/src /mnt/web524/b2/97/5955397/htdocs/Piwik_02/libs/pChart2.1.3 /mnt/web524/b2/97/5955397/htdocs/Piwik_02/libs/tcpdf /mnt/web524/b2/97/5955397/htdocs/Piwik_02/vendor/doctrine/annotations /mnt/web524/b2/97/5955397/htdocs/Piwik_02/vendor/doctrine/lexer /mnt/web524/b2/97/5955397/htdocs/Piwik_02/vendor/mnapoli /mnt/web524/b2/97/5955397/htdocs/Piwik_02/vendor/myclabs /mnt/web524/b2/97/5955397/htdocs/Piwik_02/vendor/symfony/event-dispatcher/Symfony/Component/EventDispatcher/Tests /mnt/web524/b2/97/5955397/htdocs/Piwik_02/vendor/symfony/monolog-bridge/Symfony/Bridge/Monolog/Tests<br/><br/> |
Files were found in your Piwik but we didn't expect them.<br/>--> Please delete these files to prevent errors. <--<br/><br/>File to delete: config/environment/cli.php<br/>File to delete: libs/PEAR5.php<br/>File to delete: libs/PEAR.php<br/>File to delete: libs/bower_components/jquery/MIT-LICENSE.txt<br/>File to delete: libs/bower_components/jquery-placeholder/demo.html<br/>File to delete: libs/bower_components/jquery-placeholder/LICENSE-MIT.txt<br/>File to delete: libs/bower_components/jquery-placeholder/README.md<br/>File to delete: libs/bower_components/jScrollPane/ajax_content.html<br/>File to delete: libs/bower_components/jScrollPane/ajax.html<br/>File to delete: libs/bower_components/jScrollPane/anchors.html<br/>File to delete: libs/bower_components/jScrollPane/api.html<br/>File to delete: libs/bower_components/jScrollPane/arrow_hover.html<br/>File to delete: libs/bower_components/jScrollPane/arrow_positions.html<br/>File to delete: libs/bower_components/jScrollPane/arrows.html<br/>File to delete: libs/bower_components/jScrollPane/auto_reinitialise.html<br/>File to delete: libs/bower_components/jScrollPane/basic.html<br/>File to delete: libs/bower_components/jScrollPane/caps.html<br/>File to delete: libs/bower_components/jScrollPane/changelog.html<br/>File to delete: libs/bower_components/jScrollPane/destroy.html<br/>File to delete: libs/bower_components/jScrollPane/drag_size.html<br/>File to delete: libs/bower_components/jScrollPane/dynamic_content.html<br/>File to delete: libs/bower_components/jScrollPane/dynamic_height.html<br/>File to delete: libs/bower_components/jScrollPane/dynamic_width.html<br/>File to delete: libs/bower_components/jScrollPane/events.html<br/>File to delete: libs/bower_components/jScrollPane/faqs.html<br/>File to delete: libs/bower_components/jScrollPane/fixed_width.html<br/>File to delete: libs/bower_components/jScrollPane/focus.html<br/>File to delete: libs/bower_components/jScrollPane/fullpage_scroll.html<br/>File to delete: libs/bower_components/jScrollPane/GPL-LICENSE.txt<br/>File to delete: libs/bower_components/jScrollPane/iframe2.html<br/>File to delete: libs/bower_components/jScrollPane/iframe_content1.html<br/>File to delete: libs/bower_components/jScrollPane/iframe_content2.html<br/>File to delete: libs/bower_components/jScrollPane/iframe_content3.html<br/>File to delete: libs/bower_components/jScrollPane/iframe_content4.html<br/>File to delete: libs/bower_components/jScrollPane/iframe.html<br/>File to delete: libs/bower_components/jScrollPane/image2.html<br/>File to delete: libs/bower_components/jScrollPane/image.html<br/>File to delete: libs/bower_components/jScrollPane/index.html<br/>File to delete: libs/bower_components/jScrollPane/invisibles.html<br/>File to delete: libs/bower_components/jScrollPane/known_issues.html<br/>File to delete: libs/bower_components/jScrollPane/less_basic.html<br/>File to delete: libs/bower_components/jScrollPane/mwheel_intent.html<br/>File to delete: libs/bower_components/jScrollPane/override_animate.html<br/>File to delete: libs/bower_components/jScrollPane/runeimp2.html<br/>File to delete: libs/bower_components/jScrollPane/runeimp.html<br/>File to delete: libs/bower_components/jScrollPane/scroll_on_left.html<br/>File to delete: libs/bower_components/jScrollPane/scroll_to_animate.html<br/>File to delete: libs/bower_components/jScrollPane/scroll_to.html<br/>File to delete: libs/bower_components/jScrollPane/settings.html<br/>File to delete: libs/bower_components/jScrollPane/short.html<br/>File to delete: libs/bower_components/jScrollPane/v1.html<br/>File to delete: libs/jquery/jquery.history.js<br/>File to delete: libs/PEAR/Exception.php<br/>File to delete: libs/PEAR/FixPHP5PEARWarnings.php<br/>File to delete: libs/PEAR/LICENSE<br/>File to delete: libs/PiwikTracker/composer.json<br/>File to delete: libs/PiwikTracker/LICENSE<br/>File to delete: libs/PiwikTracker/README.md<br/>File to delete: misc/others/cli-script-bootstrap.php<br/>File to delete: misc/others/iframeWidget.htm<br/>File to delete: misc/phpstorm-codestyles/Piwik_codestyle.xml<br/>File to delete: misc/phpstorm-codestyles/README.md<br/>File to delete: vendor/monolog/monolog/doc/extending.md<br/>File to delete: vendor/monolog/monolog/doc/usage.md<br/>File to delete: vendor/piwik/decompress/libs/PEAR5.php<br/>File to delete: vendor/piwik/decompress/libs/PEAR.php<br/>File to delete: vendor/piwik/decompress/libs/Archive_Tar/Tar.php<br/>File to delete: vendor/piwik/decompress/libs/PclZip/lgpl-2.1.txt<br/>File to delete: vendor/piwik/device-detector/phpunit.xml.dist<br/>File to delete: vendor/piwik/device-detector/misc/readme-report.php<br/>File to delete: vendor/piwik/device-detector/misc/test.php<br/>File to delete: .hidden<br/>File to delete: libs/bower_components/jquery-ui/ui/.jshintrc<br/>File to delete: vendor/twig/twig/.editorconfig<br/><br/><br/>To delete all these files at once, you can run this command:<br/>rm "/mnt/web524/b2/97/5955397/htdocs/Piwik_02/config/environment/cli.php" "/mnt/web524/b2/97/5955397/htdocs/Piwik_02/libs/PEAR5.php" "/mnt/web524/b2/97/5955397/htdocs/Piwik_02/libs/PEAR.php" "/mnt/web524/b2/97/5955397/htdocs/Piwik_02/libs/bower_components/jquery/MIT-LICENSE.txt" "/mnt/web524/b2/97/5955397/htdocs/Piwik_02/libs/bower_components/jquery-placeholder/demo.html" "/mnt/web524/b2/97/5955397/htdocs/Piwik_02/libs/bower_components/jquery-placeholder/LICENSE-MIT.txt" "/mnt/web524/b2/97/5955397/htdocs/Piwik_02/libs/bower_components/jquery-placeholder/README.md" "/mnt/web524/b2/97/5955397/htdocs/Piwik_02/libs/bower_components/jScrollPane/ajax_content.html" "/mnt/web524/b2/97/5955397/htdocs/Piwik_02/libs/bower_components/jScrollPane/ajax.html" "/mnt/web524/b2/97/5955397/htdocs/Piwik_02/libs/bower_components/jScrollPane/anchors.html" "/mnt/web524/b2/97/5955397/htdocs/Piwik_02/libs/bower_components/jScrollPane/api.html" "/mnt/web524/b2/97/5955397/htdocs/Piwik_02/libs/bower_components/jScrollPane/arrow_hover.html" "/mnt/web524/b2/97/5955397/htdocs/Piwik_02/libs/bower_components/jScrollPane/arrow_positions.html" "/mnt/web524/b2/97/5955397/htdocs/Piwik_02/libs/bower_components/jScrollPane/arrows.html" "/mnt/web524/b2/97/5955397/htdocs/Piwik_02/libs/bower_components/jScrollPane/auto_reinitialise.html" "/mnt/web524/b2/97/5955397/htdocs/Piwik_02/libs/bower_components/jScrollPane/basic.html" "/mnt/web524/b2/97/5955397/htdocs/Piwik_02/libs/bower_components/jScrollPane/caps.html" "/mnt/web524/b2/97/5955397/htdocs/Piwik_02/libs/bower_components/jScrollPane/changelog.html" "/mnt/web524/b2/97/5955397/htdocs/Piwik_02/libs/bower_components/jScrollPane/destroy.html" "/mnt/web524/b2/97/5955397/htdocs/Piwik_02/libs/bower_components/jScrollPane/drag_size.html" "/mnt/web524/b2/97/5955397/htdocs/Piwik_02/libs/bower_components/jScrollPane/dynamic_content.html" "/mnt/web524/b2/97/5955397/htdocs/Piwik_02/libs/bower_components/jScrollPane/dynamic_height.html" "/mnt/web524/b2/97/5955397/htdocs/Piwik_02/libs/bower_components/jScrollPane/dynamic_width.html" "/mnt/web524/b2/97/5955397/htdocs/Piwik_02/libs/bower_components/jScrollPane/events.html" "/mnt/web524/b2/97/5955397/htdocs/Piwik_02/libs/bower_components/jScrollPane/faqs.html" "/mnt/web524/b2/97/5955397/htdocs/Piwik_02/libs/bower_components/jScrollPane/fixed_width.html" "/mnt/web524/b2/97/5955397/htdocs/Piwik_02/libs/bower_components/jScrollPane/focus.html" "/mnt/web524/b2/97/5955397/htdocs/Piwik_02/libs/bower_components/jScrollPane/fullpage_scroll.html" "/mnt/web524/b2/97/5955397/htdocs/Piwik_02/libs/bower_components/jScrollPane/GPL-LICENSE.txt" "/mnt/web524/b2/97/5955397/htdocs/Piwik_02/libs/bower_components/jScrollPane/iframe2.html" "/mnt/web524/b2/97/5955397/htdocs/Piwik_02/libs/bower_components/jScrollPane/iframe_content1.html" "/mnt/web524/b2/97/5955397/htdocs/Piwik_02/libs/bower_components/jScrollPane/iframe_content2.html" "/mnt/web524/b2/97/5955397/htdocs/Piwik_02/libs/bower_components/jScrollPane/iframe_content3.html" "/mnt/web524/b2/97/5955397/htdocs/Piwik_02/libs/bower_components/jScrollPane/iframe_content4.html" "/mnt/web524/b2/97/5955397/htdocs/Piwik_02/libs/bower_components/jScrollPane/iframe.html" "/mnt/web524/b2/97/5955397/htdocs/Piwik_02/libs/bower_components/jScrollPane/image2.html" "/mnt/web524/b2/97/5955397/htdocs/Piwik_02/libs/bower_components/jScrollPane/image.html" "/mnt/web524/b2/97/5955397/htdocs/Piwik_02/libs/bower_components/jScrollPane/index.html" "/mnt/web524/b2/97/5955397/htdocs/Piwik_02/libs/bower_components/jScrollPane/invisibles.html" "/mnt/web524/b2/97/5955397/htdocs/Piwik_02/libs/bower_components/jScrollPane/known_issues.html" "/mnt/web524/b2/97/5955397/htdocs/Piwik_02/libs/bower_components/jScrollPane/less_basic.html" "/mnt/web524/b2/97/5955397/htdocs/Piwik_02/libs/bower_components/jScrollPane/mwheel_intent.html" "/mnt/web524/b2/97/5955397/htdocs/Piwik_02/libs/bower_components/jScrollPane/override_animate.html" "/mnt/web524/b2/97/5955397/htdocs/Piwik_02/libs/bower_components/jScrollPane/runeimp2.html" "/mnt/web524/b2/97/5955397/htdocs/Piwik_02/libs/bower_components/jScrollPane/runeimp.html" "/mnt/web524/b2/97/5955397/htdocs/Piwik_02/libs/bower_components/jScrollPane/scroll_on_left.html" "/mnt/web524/b2/97/5955397/htdocs/Piwik_02/libs/bower_components/jScrollPane/scroll_to_animate.html" "/mnt/web524/b2/97/5955397/htdocs/Piwik_02/libs/bower_components/jScrollPane/scroll_to.html" "/mnt/web524/b2/97/5955397/htdocs/Piwik_02/libs/bower_components/jScrollPane/settings.html" "/mnt/web524/b2/97/5955397/htdocs/Piwik_02/libs/bower_components/jScrollPane/short.html" "/mnt/web524/b2/97/5955397/htdocs/Piwik_02/libs/bower_components/jScrollPane/v1.html" "/mnt/web524/b2/97/5955397/htdocs/Piwik_02/libs/jquery/jquery.history.js" "/mnt/web524/b2/97/5955397/htdocs/Piwik_02/libs/PEAR/Exception.php" "/mnt/web524/b2/97/5955397/htdocs/Piwik_02/libs/PEAR/FixPHP5PEARWarnings.php" "/mnt/web524/b2/97/5955397/htdocs/Piwik_02/libs/PEAR/LICENSE" "/mnt/web524/b2/97/5955397/htdocs/Piwik_02/libs/PiwikTracker/composer.json" "/mnt/web524/b2/97/5955397/htdocs/Piwik_02/libs/PiwikTracker/LICENSE" "/mnt/web524/b2/97/5955397/htdocs/Piwik_02/libs/PiwikTracker/README.md" "/mnt/web524/b2/97/5955397/htdocs/Piwik_02/misc/others/cli-script-bootstrap.php" "/mnt/web524/b2/97/5955397/htdocs/Piwik_02/misc/others/iframeWidget.htm" "/mnt/web524/b2/97/5955397/htdocs/Piwik_02/misc/phpstorm-codestyles/Piwik_codestyle.xml" "/mnt/web524/b2/97/5955397/htdocs/Piwik_02/misc/phpstorm-codestyles/README.md" "/mnt/web524/b2/97/5955397/htdocs/Piwik_02/vendor/monolog/monolog/doc/extending.md" "/mnt/web524/b2/97/5955397/htdocs/Piwik_02/vendor/monolog/monolog/doc/usage.md" "/mnt/web524/b2/97/5955397/htdocs/Piwik_02/vendor/piwik/decompress/libs/PEAR5.php" "/mnt/web524/b2/97/5955397/htdocs/Piwik_02/vendor/piwik/decompress/libs/PEAR.php" "/mnt/web524/b2/97/5955397/htdocs/Piwik_02/vendor/piwik/decompress/libs/Archive_Tar/Tar.php" "/mnt/web524/b2/97/5955397/htdocs/Piwik_02/vendor/piwik/decompress/libs/PclZip/lgpl-2.1.txt" "/mnt/web524/b2/97/5955397/htdocs/Piwik_02/vendor/piwik/device-detector/phpunit.xml.dist" "/mnt/web524/b2/97/5955397/htdocs/Piwik_02/vendor/piwik/device-detector/misc/readme-report.php" "/mnt/web524/b2/97/5955397/htdocs/Piwik_02/vendor/piwik/device-detector/misc/test.php" "/mnt/web524/b2/97/5955397/htdocs/Piwik_02/.hidden" "/mnt/web524/b2/97/5955397/htdocs/Piwik_02/libs/bower_components/jquery-ui/ui/.jshintrc" "/mnt/web524/b2/97/5955397/htdocs/Piwik_02/vendor/twig/twig/.editorconfig"<br/><br/> |
Errors below may be due to a partial or failed upload of Piwik files. |
--> Try to reupload all the Piwik files in BINARY mode. <--<br/> |
File size mismatch: /mnt/web524/b2/97/5955397/htdocs/Piwik_02/vendor/piwik/decompress/libs/PclZip/gnu-lgpl.txt (expected length: 26934, found: 26430) |
File size mismatch: /mnt/web524/b2/97/5955397/htdocs/Piwik_02/vendor/piwik/decompress/libs/PclZip/readme.txt (expected length: 22011, found: 21590) |