Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/config
AgeCommit message (Collapse)Author
2015-03-10Merge pull request #7327 from piwik/https-updateMatthieu Napoli
Update Piwik over HTTPS
2015-03-05Adding more referrer spammers - these guys are getting worse refs #5099mattab
2015-03-04#6441 Updating through HTTPS if openssl is installed, else use HTTPMatthieu Napoli
HTTP will be used if (and only if) HTTPS is not supported at all (e.g. openssl is not installed or fopen/curl is not supported). If HTTPS is supported, we try to update through HTTPS: any failure will stop the update process and we don't fallback to HTTP. This is the expected behavior: a failure could be a MITM attack.
2015-03-04Update Piwik using HTTPS + add a system checkMatthieu Napoli
- Piwik will update over HTTPS if curl is supported - the system check verifies that updating over HTTPS is supported (= curl supported)
2015-02-23Merge pull request #7253 from piwik/6635_2Matthieu Aubry
automatically configure database_tests config for developers when running tests.
2015-02-23Refs #5099 adding new referrer spammersmattab
2015-02-23fixes #6635 automatically configure database_tests config for developers ↵Thomas Steur
when running tests. I also replaced the check that does a request against Piwik to check whether it is installed with `SettingsPiwik::isInstalled()` as discussed recently
2015-02-16Refs #7113, document archiving_range_force_on_browser_request INI config ↵diosmosis
option in global.ini.php.
2015-02-12Moved the monolog configuration and code into a Monolog pluginMatthieu Napoli
2015-02-11Simplified the cache configurationMatthieu Napoli
2015-02-10#7094 Added a new "Development" language that shows the raw translation idMatthieu Napoli
This language is shown when development mode is enabled.
2015-02-03Merge branch 'master' into move_language_reportsgiehl
Conflicts: plugins/UserLanguage/Archiver.php
2015-02-02Updated composer and PHP-DI with latest changesMatthieu Napoli
2015-02-01Merge branch 'master' into move_language_reportsgiehl
Conflicts: CHANGELOG.md
2015-01-30Updated comment in global.ini.php to hide deprecated log levelsMatthieu Napoli
2015-01-28rebased branch, changed parameter meaning and usageMichał Gaździk
2015-01-27refs #6986 update default example for segments pre-archiving to also include ↵Thomas Steur
returningCustomer
2015-01-13refs #3962 - moved language reports to their own pluginsgiehl
2015-01-12use a static Array cache during developmentThomas Steur
During development we still want to use a cache to cache items that are requested multiple times during one request. For example Marketplace API calls. The marketplace page in dev mode does now load in about 4 seconds instead of 30 seconds. Also plugin components etc. will now longer loaded multiple times.
2015-01-10Removed deprecated settings from config filemattab
2015-01-07refs #6022 separate goals and ecommerce menu items, added goals management ↵Thomas Steur
menu item
2015-01-05Fix unit tests by loading no translations by default in testsMatthieu Napoli
2015-01-05Refactored the way translations are loadedMatthieu Napoli
Translations are now lazily loaded instead of being explicitely loaded by other components (e.g. the front controller, the plugin manager, etc...). Now other parties only configure "directories" where the translator can find translations. That makes the translator decoupled from the rest of Piwik.
2014-12-29Merge pull request #6894 from piwik/ini-configMatthieu Aubry
DI config: renamed the `old_config` prefix to `ini`
2014-12-23fixes #6895 - add a config option that causes the image graphs to show the ↵Timo Besenreuther
evolution within the selected period instead of the evolution across the last n periods
2014-12-23DI config: renamed the `old_config` prefix to `ini`Matthieu Napoli
Initially we considered dropping the `ini` config, but the current stance is we keep `config.ini.php` because it's a user friendly config.
2014-12-21moved browser plugin reports to an own plugin 'DevicePlugins'sgiehl
2014-12-19Merge branch 'master' into log-refactoring-1Matthieu Napoli
Conflicts: CHANGELOG.md plugins/CoreConsole/Commands/CoreArchiver.php
2014-12-17Fixes #6872 new referrer spammermattab
2014-12-17#6622 Logger refactoring: remove INI options:Matthieu Napoli
- log_only_when_cli - log_only_when_debug_parameter
2014-12-17Merge branch 'master' into log-refactoring-1Matthieu Napoli
Conflicts: composer.json composer.lock config/global.php core/Container/StaticContainer.php
2014-12-17added support for different caching backends such as redisThomas Steur
2014-12-16fixes #6858mattab
2014-12-15Fixes #6529 before loading plugins in memory, order the list the same as it ↵mattab
is in global.ini.php - then load remaining plugins in alphabetical order
2014-12-15Merge remote-tracking branch 'origin/master' into log-refactoring-1Matthieu Napoli
Conflicts: composer.lock
2014-12-15#6622 Logger refactoring: restored the "screen" backend to log to HTML ↵Matthieu Napoli
notifications The "screen" backend (WebNotificationHandler) now logs to HTML notification boxes using the `Notification` api. I've re-set the default log level to WARN, and logged PHP notices/warnings to "warning" so that on a default install they are shown in the page in a yellow/warning notification box. For the record, the default log level had previously been changed from WARN to ERROR because screen logging was previously messing the HTML/JSON output (which was breaking archiving). With the logger refactoring this is no longer a problem.
2014-12-14Merge pull request #6827 from piwik/move_resolution_reportStefan Giehl
Moved resolution reports to a new plugin
2014-12-13Fix typo in last commit.diosmosis
2014-12-13Tweak new option comments.diosmosis
2014-12-13Applying review changes: remove tracker_ prefix from config names, move ↵diosmosis
shouldForceNewVisit to VisitDimension and simplify triggerPredicateHookOnDimensions.
2014-12-11#6622 Logger refactoring: Separated error and exception handling from loggingMatthieu Napoli
- the error handler logs warnings and notices, and turns errors into exceptions (`ErrorException`) - the exception handler catches all uncatched exceptions and display them to the user (HTML or CLI) - the "screen" logging backend has been removed - I've normalized exceptions/errors shown to the user in HTML (wether they are catched by the FrontController or not)
2014-12-10#6622 Logger refactoring: Turned the Exception (text) formatter into a ↵Matthieu Napoli
processor + added tests Monolog handlers support 1 formatter. Using processors instead of nested formatters leads to much simpler code.
2014-12-10#6622 Logger refactoring: introduced a DI config for the test environmentMatthieu Napoli
2014-12-10Refs #2624, add INI config options that will force a new visit if ↵diosmosis
campaign/website referrer information changes between actions. Includes new tracker hook shouldForceNewVisit that dimensions can use to force a new visit during tracking. Also includes light refactoring to referrer dimensions. Testless.
2014-12-10#6622 Logger refactoring: replaced Piwik StdOutHandler with Monolog's ↵Matthieu Napoli
StreamHandler
2014-12-10#6622 Logger refactoring: renamed "Backend" to "Handler" to match Monolog namingMatthieu Napoli
2014-12-09moved resolution and configuration reports to a new pluginsgiehl
2014-12-08Merge branch 'master' into log-refactoring-1Matthieu Napoli
2014-12-08Refs #6819 Fix commentmattab
2014-12-08fixes #6824 Hash the fingerprint with the website ID to make it different on ↵mattab
each website for a given user + tests