Piwik database will be upgraded from version 2.15.0-b12 to the new version 3.1.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 /home/u8684365/public_html/stats.kamentk.com/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.1.1
UPDATE piwik_user_dashboard SET layout = '{\"config\":{\"layout\":\"33-33-33\"},\"columns\":[[{\"uniqueId\":\"widgetVisitsSummarygetEvolutionGraphforceView1viewDataTablegraphEvolution\",\"parameters\":{\"module\":\"VisitsSummary\",\"action\":\"getEvolutionGraph\",\"columns\":\"nb_visits\",\"widget\":1,\"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\":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,\"isFooterExpandedInDashboard\":true},\"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;
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;
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;
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 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. --> Please delete these directories to prevent errors. <-- Directory to delete: libs/bower_components/jScrollPane/issues Directory to delete: libs/bower_components/jScrollPane/themes Directory to delete: libs/bower_components/jquery/src Directory to delete: libs/pChart Directory to delete: vendor/doctrine/annotations Directory to delete: vendor/doctrine/lexer Directory to delete: vendor/mnapoli Directory to delete: vendor/tecnick.com To delete all these directories at once, you can run this command: rm -Rf /home/u8684365/public_html/stats.kamentk.com/libs/bower_components/jScrollPane/issues /home/u8684365/public_html/stats.kamentk.com/libs/bower_components/jScrollPane/themes /home/u8684365/public_html/stats.kamentk.com/libs/bower_components/jquery/src /home/u8684365/public_html/stats.kamentk.com/libs/pChart /home/u8684365/public_html/stats.kamentk.com/vendor/doctrine/annotations /home/u8684365/public_html/stats.kamentk.com/vendor/doctrine/lexer /home/u8684365/public_html/stats.kamentk.com/vendor/mnapoli /home/u8684365/public_html/stats.kamentk.com/vendor/tecnick.com |
Files were found in your Piwik but we didn't expect them. --> Please delete these files to prevent errors. <-- File to delete: error_log File to delete: js/error_log File to delete: libs/bower_components/jquery/MIT-LICENSE.txt File to delete: libs/bower_components/jquery-placeholder/demo.html File to delete: libs/bower_components/jquery-placeholder/LICENSE-MIT.txt File to delete: libs/bower_components/jquery-placeholder/README.md File to delete: libs/bower_components/jScrollPane/ajax_content.html File to delete: libs/bower_components/jScrollPane/ajax.html File to delete: libs/bower_components/jScrollPane/anchors.html File to delete: libs/bower_components/jScrollPane/api.html File to delete: libs/bower_components/jScrollPane/arrow_hover.html File to delete: libs/bower_components/jScrollPane/arrow_positions.html File to delete: libs/bower_components/jScrollPane/arrows.html File to delete: libs/bower_components/jScrollPane/auto_reinitialise.html File to delete: libs/bower_components/jScrollPane/basic.html File to delete: libs/bower_components/jScrollPane/caps.html File to delete: libs/bower_components/jScrollPane/changelog.html File to delete: libs/bower_components/jScrollPane/destroy.html File to delete: libs/bower_components/jScrollPane/drag_size.html File to delete: libs/bower_components/jScrollPane/dynamic_content.html File to delete: libs/bower_components/jScrollPane/dynamic_height.html File to delete: libs/bower_components/jScrollPane/dynamic_width.html File to delete: libs/bower_components/jScrollPane/events.html File to delete: libs/bower_components/jScrollPane/faqs.html File to delete: libs/bower_components/jScrollPane/fixed_width.html File to delete: libs/bower_components/jScrollPane/focus.html File to delete: libs/bower_components/jScrollPane/fullpage_scroll.html File to delete: libs/bower_components/jScrollPane/GPL-LICENSE.txt File to delete: libs/bower_components/jScrollPane/iframe2.html File to delete: libs/bower_components/jScrollPane/iframe_content1.html File to delete: libs/bower_components/jScrollPane/iframe_content2.html File to delete: libs/bower_components/jScrollPane/iframe_content3.html File to delete: libs/bower_components/jScrollPane/iframe_content4.html File to delete: libs/bower_components/jScrollPane/iframe.html File to delete: libs/bower_components/jScrollPane/image2.html File to delete: libs/bower_components/jScrollPane/image.html File to delete: libs/bower_components/jScrollPane/index.html File to delete: libs/bower_components/jScrollPane/invisibles.html File to delete: libs/bower_components/jScrollPane/known_issues.html File to delete: libs/bower_components/jScrollPane/less_basic.html File to delete: libs/bower_components/jScrollPane/mwheel_intent.html File to delete: libs/bower_components/jScrollPane/override_animate.html File to delete: libs/bower_components/jScrollPane/runeimp2.html File to delete: libs/bower_components/jScrollPane/runeimp.html File to delete: libs/bower_components/jScrollPane/scroll_on_left.html File to delete: libs/bower_components/jScrollPane/scroll_to_animate.html File to delete: libs/bower_components/jScrollPane/scroll_to.html File to delete: libs/bower_components/jScrollPane/settings.html File to delete: libs/bower_components/jScrollPane/short.html File to delete: libs/bower_components/jScrollPane/v1.html File to delete: libs/jquery/jquery.smartbanner.js File to delete: libs/jquery/MIT-LICENSE-smartbanner.txt File to delete: libs/jquery/stylesheets/jquery.smartbanner.css File to delete: libs/PiwikTracker/composer.json File to delete: libs/PiwikTracker/LICENSE File to delete: libs/PiwikTracker/README.md File to delete: misc/others/iframeWidget.htm File to delete: misc/phpstorm-codestyles/Piwik_codestyle.xml File to delete: misc/phpstorm-codestyles/README.md File to delete: vendor/monolog/monolog/CHANGELOG.mdown File to delete: vendor/monolog/monolog/README.mdown File to delete: vendor/pear/pear-core-minimal/src/PEAR5.php File to delete: vendor/pear/pear-core-minimal/src/PEAR/ErrorStack5.php File to delete: vendor/php-di/php-di/src/DI/Definition/AbstractFunctionCallDefinition.php File to delete: vendor/php-di/php-di/src/DI/Definition/Dumper/AliasDefinitionDumper.php File to delete: vendor/php-di/php-di/src/DI/Definition/Dumper/ArrayDefinitionDumper.php File to delete: vendor/php-di/php-di/src/DI/Definition/Dumper/DecoratorDefinitionDumper.php File to delete: vendor/php-di/php-di/src/DI/Definition/Dumper/DefinitionDumperDispatcher.php File to delete: vendor/php-di/php-di/src/DI/Definition/Dumper/DefinitionDumper.php File to delete: vendor/php-di/php-di/src/DI/Definition/Dumper/EnvironmentVariableDefinitionDumper.php File to delete: vendor/php-di/php-di/src/DI/Definition/Dumper/FactoryDefinitionDumper.php File to delete: vendor/php-di/php-di/src/DI/Definition/Dumper/StringDefinitionDumper.php File to delete: vendor/php-di/php-di/src/DI/Definition/Dumper/ValueDefinitionDumper.php File to delete: vendor/php-di/php-di/src/DI/Definition/Resolver/AliasResolver.php File to delete: vendor/php-di/php-di/src/DI/Definition/Resolver/StringResolver.php File to delete: vendor/php-di/php-di/src/DI/Definition/Resolver/ValueResolver.php File to delete: vendor/php-di/php-di/src/DI/Reflection/CallableReflectionFactory.php File to delete: vendor/piwik/decompress/libs/PclZip/lgpl-2.1.txt File to delete: vendor/piwik/device-detector/phpunit.xml.dist File to delete: vendor/piwik/device-detector/misc/readme-report.php File to delete: vendor/piwik/device-detector/misc/test.php 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 "/home/u8684365/public_html/stats.kamentk.com/error_log" "/home/u8684365/public_html/stats.kamentk.com/js/error_log" "/home/u8684365/public_html/stats.kamentk.com/libs/bower_components/jquery/MIT-LICENSE.txt" "/home/u8684365/public_html/stats.kamentk.com/libs/bower_components/jquery-placeholder/demo.html" "/home/u8684365/public_html/stats.kamentk.com/libs/bower_components/jquery-placeholder/LICENSE-MIT.txt" "/home/u8684365/public_html/stats.kamentk.com/libs/bower_components/jquery-placeholder/README.md" "/home/u8684365/public_html/stats.kamentk.com/libs/bower_components/jScrollPane/ajax_content.html" "/home/u8684365/public_html/stats.kamentk.com/libs/bower_components/jScrollPane/ajax.html" "/home/u8684365/public_html/stats.kamentk.com/libs/bower_components/jScrollPane/anchors.html" "/home/u8684365/public_html/stats.kamentk.com/libs/bower_components/jScrollPane/api.html" "/home/u8684365/public_html/stats.kamentk.com/libs/bower_components/jScrollPane/arrow_hover.html" "/home/u8684365/public_html/stats.kamentk.com/libs/bower_components/jScrollPane/arrow_positions.html" "/home/u8684365/public_html/stats.kamentk.com/libs/bower_components/jScrollPane/arrows.html" "/home/u8684365/public_html/stats.kamentk.com/libs/bower_components/jScrollPane/auto_reinitialise.html" "/home/u8684365/public_html/stats.kamentk.com/libs/bower_components/jScrollPane/basic.html" "/home/u8684365/public_html/stats.kamentk.com/libs/bower_components/jScrollPane/caps.html" "/home/u8684365/public_html/stats.kamentk.com/libs/bower_components/jScrollPane/changelog.html" "/home/u8684365/public_html/stats.kamentk.com/libs/bower_components/jScrollPane/destroy.html" "/home/u8684365/public_html/stats.kamentk.com/libs/bower_components/jScrollPane/drag_size.html" "/home/u8684365/public_html/stats.kamentk.com/libs/bower_components/jScrollPane/dynamic_content.html" "/home/u8684365/public_html/stats.kamentk.com/libs/bower_components/jScrollPane/dynamic_height.html" "/home/u8684365/public_html/stats.kamentk.com/libs/bower_components/jScrollPane/dynamic_width.html" "/home/u8684365/public_html/stats.kamentk.com/libs/bower_components/jScrollPane/events.html" "/home/u8684365/public_html/stats.kamentk.com/libs/bower_components/jScrollPane/faqs.html" "/home/u8684365/public_html/stats.kamentk.com/libs/bower_components/jScrollPane/fixed_width.html" "/home/u8684365/public_html/stats.kamentk.com/libs/bower_components/jScrollPane/focus.html" "/home/u8684365/public_html/stats.kamentk.com/libs/bower_components/jScrollPane/fullpage_scroll.html" "/home/u8684365/public_html/stats.kamentk.com/libs/bower_components/jScrollPane/GPL-LICENSE.txt" "/home/u8684365/public_html/stats.kamentk.com/libs/bower_components/jScrollPane/iframe2.html" "/home/u8684365/public_html/stats.kamentk.com/libs/bower_components/jScrollPane/iframe_content1.html" "/home/u8684365/public_html/stats.kamentk.com/libs/bower_components/jScrollPane/iframe_content2.html" "/home/u8684365/public_html/stats.kamentk.com/libs/bower_components/jScrollPane/iframe_content3.html" "/home/u8684365/public_html/stats.kamentk.com/libs/bower_components/jScrollPane/iframe_content4.html" "/home/u8684365/public_html/stats.kamentk.com/libs/bower_components/jScrollPane/iframe.html" "/home/u8684365/public_html/stats.kamentk.com/libs/bower_components/jScrollPane/image2.html" "/home/u8684365/public_html/stats.kamentk.com/libs/bower_components/jScrollPane/image.html" "/home/u8684365/public_html/stats.kamentk.com/libs/bower_components/jScrollPane/index.html" "/home/u8684365/public_html/stats.kamentk.com/libs/bower_components/jScrollPane/invisibles.html" "/home/u8684365/public_html/stats.kamentk.com/libs/bower_components/jScrollPane/known_issues.html" "/home/u8684365/public_html/stats.kamentk.com/libs/bower_components/jScrollPane/less_basic.html" "/home/u8684365/public_html/stats.kamentk.com/libs/bower_components/jScrollPane/mwheel_intent.html" "/home/u8684365/public_html/stats.kamentk.com/libs/bower_components/jScrollPane/override_animate.html" "/home/u8684365/public_html/stats.kamentk.com/libs/bower_components/jScrollPane/runeimp2.html" "/home/u8684365/public_html/stats.kamentk.com/libs/bower_components/jScrollPane/runeimp.html" "/home/u8684365/public_html/stats.kamentk.com/libs/bower_components/jScrollPane/scroll_on_left.html" "/home/u8684365/public_html/stats.kamentk.com/libs/bower_components/jScrollPane/scroll_to_animate.html" "/home/u8684365/public_html/stats.kamentk.com/libs/bower_components/jScrollPane/scroll_to.html" "/home/u8684365/public_html/stats.kamentk.com/libs/bower_components/jScrollPane/settings.html" "/home/u8684365/public_html/stats.kamentk.com/libs/bower_components/jScrollPane/short.html" "/home/u8684365/public_html/stats.kamentk.com/libs/bower_components/jScrollPane/v1.html" rm "/home/u8684365/public_html/stats.kamentk.com/libs/jquery/jquery.smartbanner.js" "/home/u8684365/public_html/stats.kamentk.com/libs/jquery/MIT-LICENSE-smartbanner.txt" "/home/u8684365/public_html/stats.kamentk.com/libs/jquery/stylesheets/jquery.smartbanner.css" "/home/u8684365/public_html/stats.kamentk.com/libs/PiwikTracker/composer.json" "/home/u8684365/public_html/stats.kamentk.com/libs/PiwikTracker/LICENSE" "/home/u8684365/public_html/stats.kamentk.com/libs/PiwikTracker/README.md" "/home/u8684365/public_html/stats.kamentk.com/misc/others/iframeWidget.htm" "/home/u8684365/public_html/stats.kamentk.com/misc/phpstorm-codestyles/Piwik_codestyle.xml" "/home/u8684365/public_html/stats.kamentk.com/misc/phpstorm-codestyles/README.md" "/home/u8684365/public_html/stats.kamentk.com/vendor/monolog/monolog/CHANGELOG.mdown" "/home/u8684365/public_html/stats.kamentk.com/vendor/monolog/monolog/README.mdown" "/home/u8684365/public_html/stats.kamentk.com/vendor/pear/pear-core-minimal/src/PEAR5.php" "/home/u8684365/public_html/stats.kamentk.com/vendor/pear/pear-core-minimal/src/PEAR/ErrorStack5.php" "/home/u8684365/public_html/stats.kamentk.com/vendor/php-di/php-di/src/DI/Definition/AbstractFunctionCallDefinition.php" "/home/u8684365/public_html/stats.kamentk.com/vendor/php-di/php-di/src/DI/Definition/Dumper/AliasDefinitionDumper.php" "/home/u8684365/public_html/stats.kamentk.com/vendor/php-di/php-di/src/DI/Definition/Dumper/ArrayDefinitionDumper.php" "/home/u8684365/public_html/stats.kamentk.com/vendor/php-di/php-di/src/DI/Definition/Dumper/DecoratorDefinitionDumper.php" "/home/u8684365/public_html/stats.kamentk.com/vendor/php-di/php-di/src/DI/Definition/Dumper/DefinitionDumperDispatcher.php" "/home/u8684365/public_html/stats.kamentk.com/vendor/php-di/php-di/src/DI/Definition/Dumper/DefinitionDumper.php" "/home/u8684365/public_html/stats.kamentk.com/vendor/php-di/php-di/src/DI/Definition/Dumper/EnvironmentVariableDefinitionDumper.php" "/home/u8684365/public_html/stats.kamentk.com/vendor/php-di/php-di/src/DI/Definition/Dumper/FactoryDefinitionDumper.php" "/home/u8684365/public_html/stats.kamentk.com/vendor/php-di/php-di/src/DI/Definition/Dumper/StringDefinitionDumper.php" "/home/u8684365/public_html/stats.kamentk.com/vendor/php-di/php-di/src/DI/Definition/Dumper/ValueDefinitionDumper.php" "/home/u8684365/public_html/stats.kamentk.com/vendor/php-di/php-di/src/DI/Definition/Resolver/AliasResolver.php" "/home/u8684365/public_html/stats.kamentk.com/vendor/php-di/php-di/src/DI/Definition/Resolver/StringResolver.php" "/home/u8684365/public_html/stats.kamentk.com/vendor/php-di/php-di/src/DI/Definition/Resolver/ValueResolver.php" "/home/u8684365/public_html/stats.kamentk.com/vendor/php-di/php-di/src/DI/Reflection/CallableReflectionFactory.php" "/home/u8684365/public_html/stats.kamentk.com/vendor/piwik/decompress/libs/PclZip/lgpl-2.1.txt" "/home/u8684365/public_html/stats.kamentk.com/vendor/piwik/device-detector/phpunit.xml.dist" "/home/u8684365/public_html/stats.kamentk.com/vendor/piwik/device-detector/misc/readme-report.php" "/home/u8684365/public_html/stats.kamentk.com/vendor/piwik/device-detector/misc/test.php" "/home/u8684365/public_html/stats.kamentk.com/libs/bower_components/jquery-ui/ui/.jshintrc" "/home/u8684365/public_html/stats.kamentk.com/vendor/monolog/monolog/.php_cs" "/home/u8684365/public_html/stats.kamentk.com/vendor/pear/archive_tar/.travis.sh" "/home/u8684365/public_html/stats.kamentk.com/vendor/piwik/device-detector/.php_cs" "/home/u8684365/public_html/stats.kamentk.com/vendor/twig/twig/.editorconfig" |