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-03-25 07:24:48 +0300
committermatt <matt@59fd770c-687e-43c8-a1e3-f5a4ff64c105>2009-03-25 07:24:48 +0300
commit44e29c487fb8b127b1b174b834e233769508dfe0 (patch)
tree6a1ed30f546977e8bd827e42b438808a5d97cb46 /config
parent64b0df6d2dd13fe6568e4acbcc83402e43f7e0fb (diff)
- cleaned up the Tracker/Action code, added tests, as well as cleaning up Actions archiving code
- now displaying all columns that user setColumnsToDisplay even if there are no values set - displaying custom column names for downloads and outlinks tables - enabled sort on download and outlinks - it's now possible to sort a table by a column that is not defined. It will not error but just not do anything. - fixed #393 Remove unique visitors from report for a given category of actions - fixed #158 outlinks without subpages when there are outlinks with the same domain and subpages should be grouped in the same row - fixed #535 Add "export" icons below the "Actions" reports (pages, download, outlinks) - fixed #579 API Actions: full_url and url is 0 - REMOVED feature of naming an outlink or a download with a custom name. All downloads and outlinks are now grouped by the URL host. The data will be consistent across all periods independantly of the data set. Only data processed from this version will be affected. - API CHANGE renamed entry_nb_unique_visitor in entry_nb_uniq_visitors and renamed exit_nb_unique_visitor in exit_nb_uniq_visitors in the Actions.getActions API call - FEATURE outlink won't count clicks on URLs where the hostname is one of the registered hostname for this website (see Settings > Websites) - FEATURE you can use Piwik to count clicks on links and count downloads, without using the automatic Javascript based download/outlinks tracking, but by modifying links to go through piwik.php. For example, http://yourwebsite.org/piwik/piwik.php?idsite=1&link=http://example.org&redirect=1 will count the outlink in piwik and redirect the user to http://example.org For example, http://yourwebsite.org/piwik/piwik.php?idsite=1&download=http://yourwebsite.org/download.pdf&redirect=1 will count the download in piwik and redirect the user to http://yourwebsite.org/download.pdf NOTE: it is recommended to rely on the automatic outlink and download tracking (more information on http://piwik.org/docs/javascript-tracking/). rather than adding a depending on Piwik for your website to function properly. However this feature is useful to some users as it gives a simple and reliable way of counting clicks, that you can then query using the Piwik API.
Diffstat (limited to 'config')
-rwxr-xr-xconfig/global.ini.php59
1 files changed, 33 insertions, 26 deletions
diff --git a/config/global.ini.php b/config/global.ini.php
index 865fa2ff46..1005ba5788 100755
--- a/config/global.ini.php
+++ b/config/global.ini.php
@@ -129,32 +129,6 @@ visit_standard_length = 1800
; visitors that stay on the website and view only one page will be considered staying 10 seconds
default_time_one_page_visit = 10
-; variable name used to specify a download link
-; Example: '/piwik.php?idsite=1&download=http://piwik.org/piwik.zip' will redirect to 'http://piwik.org/piwik.zip'
-download_url_var_name = download
-
-; variable name used to specify a link to an external website
-; Example: '/piwik.php?idsite=1&link=http://piwik.org/' will redirect to 'http://piwik.org/'
-outlink_url_var_name = link
-
-; variable that contains the name of the download or the outlink to redirect to
-; Example: '/piwik.php?idsite=1&download=http://piwik.org/piwik.zip&name=Piwik last version'
-download_outlink_name_var = name
-
-; variable name to track any campaign, for example CPC campaign
-; Example: If a visitor first visits 'index.php?piwik_campaign=Adwords-CPC' then it will be counted as a campaign referer named 'Adwords-CPC'
-campaign_var_name = piwik_campaign
-
-; variable name to track any campaign keyword
-; Example: If a visitor first visits 'index.php?piwik_campaign=Adwords-CPC&piwik_kwd=My killer keyword' then it will be counted as a campaign referer named 'Adwords-CPC' with the keyword 'My killer keyword'
-campaign_keyword_var_name = piwik_kwd
-
-; name of the cookie used to store the visitor information
-cookie_name = piwik_visitor
-
-; by default, the Piwik tracking cookie expires in 2 years
-cookie_expire = 63072000
-
; if set to false, any goal conversion will be credited to the last more recent non empty referer.
; when set to true, the first ever referer used to reach the website will be used
use_first_referer_to_determine_goal_referer = false
@@ -170,6 +144,39 @@ enable_detect_unique_visitor_using_settings = true
; The mapping is defined in core/DataFiles/LanguageToCountry.php,
enable_language_to_country_guess = true
+; name of the cookie used to store the visitor information
+cookie_name = piwik_visitor
+
+; by default, the Piwik tracking cookie expires in 2 years
+cookie_expire = 63072000
+
+; variable name to track any campaign, for example CPC campaign
+; Example: If a visitor first visits 'index.php?piwik_campaign=Adwords-CPC' then it will be counted as a campaign referer named 'Adwords-CPC'
+campaign_var_name = piwik_campaign
+
+; variable name to track any campaign keyword
+; Example: If a visitor first visits 'index.php?piwik_campaign=Adwords-CPC&piwik_kwd=My killer keyword' then it will be counted as a campaign referer named 'Adwords-CPC' with the keyword 'My killer keyword'
+campaign_keyword_var_name = piwik_kwd
+
+; variable name used to specify a download link
+; Example: '/piwik.php?idsite=1&download=http://piwik.org/piwik.zip' will redirect to 'http://piwik.org/piwik.zip'
+download_url_var_name = download
+
+; variable name used to specify a link to an external website
+; Example: '/piwik.php?idsite=1&link=http://piwik.org/' will redirect to 'http://piwik.org/'
+outlink_url_var_name = link
+
+; variable name used to specify that the user should be redirected to the clicked linked, or the downloaded file
+; eg. http://yourwebsite.org/piwik/piwik.php?idsite=1&link=http://example.org&redirect=1
+; will count the outlink in piwik and redirect the user to http://example.org
+; eg. http://yourwebsite.org/piwik/piwik.php?idsite=1&download=http://yourwebsite.org/download.pdf&redirect=1
+; will count the download in piwik and redirect the user to http://yourwebsite.org/download.pdf
+; NOTE: it is recommended to rely on the automatic outlink and download tracking (more information on http://piwik.org/docs/javascript-tracking/).
+; rather than adding a depending on Piwik for your website to function properly.
+; However this feature is useful to some users as it gives a simple and reliable way of counting clicks, that you can then query using the Piwik API.
+outlink_redirect_var_name = redirect
+download_redirect_var_name = redirect
+
[log]
;possible values for log: screen, database, file