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
diff options
context:
space:
mode:
authormatt <matt@59fd770c-687e-43c8-a1e3-f5a4ff64c105>2009-10-23 02:40:18 +0400
committermatt <matt@59fd770c-687e-43c8-a1e3-f5a4ff64c105>2009-10-23 02:40:18 +0400
commit851b2e22b2fc004c4e006abfb84d267d9bfe0b29 (patch)
tree989989fe4794e0162410fe7d1c933bad41f83f09 /config
parent013711875021fb0b585c86e4b1404132f34cf437 (diff)
- Fixes #708 kudos to Maciej for his work on this one, and Anthon & Matt for the review.
Changes from Maciej's patch: -- the old Actions stats are displayed in the Page titles section, ensure BC when users were specifying page titles, they would appear in the same report. The api Actions.getActions (now deprecated) is a proxy to Actions.getPageTitles) -- applied schema change to log_conversion -- empty action names and empty URLs are now accepted at tracking time. They will be replaced at archiving time by the strings defined in the config file. - API: if a method has a comment @deprecated, it won't be shown in the API listing page (used for the now deprecated Actions.getActions() API call) - Fixes #693 Visits generator now asks for user confirmation before inserting fake data in the DB TODO: - apply small modifs to the JS tracker (setCustomUrl() and action_name defaulting to document.title) - improve/fix unit tests around the expected behavior of Action naming
Diffstat (limited to 'config')
-rw-r--r--config/global.ini.php11
1 files changed, 8 insertions, 3 deletions
diff --git a/config/global.ini.php b/config/global.ini.php
index ffff48ea6b..14742744e7 100644
--- a/config/global.ini.php
+++ b/config/global.ini.php
@@ -72,6 +72,14 @@ enable_browser_archiving_triggering = 1
; the page first-post in the subcategory development which belongs to the blog category
action_category_delimiter = /
+; this action name is used when the URL ends with a slash /
+; it is useful to have an actual string to write in the UI
+action_default_name = index
+
+; this action name is used when the URL has no page title or page URL defined
+action_default_name_when_not_defined = "page title not defined"
+action_default_url_when_not_defined = "page url not defined"
+
; currency used by default when reporting money in Piwik
; the trailing space is required for php 5.2.x vs 5.3 compatibility
default_currency = "$ "
@@ -139,9 +147,6 @@ swfobject_version = 2.2
; set to 0 if you want to stop tracking the visitors. Useful if you need to stop all the connections on the DB.
record_statistics = 1
-; this action name is used when the javascript variable piwik_action_name is not specified in the piwik javascript code, and when the URL has no path.
-default_action_name = index
-
; length of a visit in seconds. If a visitor comes back on the website visit_standard_length seconds after his last page view, it will be recorded as a new visit
visit_standard_length = 1800