issue_owner_repo listlengths 2 2 | issue_body stringlengths 0 262k ⌀ | issue_title stringlengths 1 1.02k | issue_comments_url stringlengths 53 116 | issue_comments_count int64 0 2.49k | issue_created_at stringdate 1999-03-17 02:06:42 2025-06-23 11:41:49 | issue_updated_at stringdate 2000-02-10 06:43:57 2025-06-23 11:43:00 | issue_html_url stringlengths 34 97 | issue_github_id int64 132 3.17B | issue_number int64 1 215k |
|---|---|---|---|---|---|---|---|---|---|
[
"matomo-org",
"matomo"
] | i'm getting very often a user from the country "unknown" with the provider "googlebot", resolution 1024 x 1024, Browser: Mozilla 5.0 and an unknown operating system.
i'm getting this on a few sites.
maybe a new version of the googlebot?
Keywords: googlebot
| User from unknown with provider googlebot | https://api.github.com/repos/matomo-org/matomo/issues/918/comments | 9 | 2009-08-11T09:24:12Z | 2014-07-08T10:01:12Z | https://github.com/matomo-org/matomo/issues/918 | 37,350,985 | 918 |
[
"matomo-org",
"matomo"
] | Currently Error level report is hardcoded in the code and duplicated in different files. Instead, we should read the PHP level error reporting from the config file, eg.
```
[Debug]
; when set to 0, no error will be output in the Piwik interface. This is useful for users that do not want Piwik to show any error.
; By default, we choose to display all PHP Warnings, Notices and error messages because it helps us find and diagnose bugs
display_errors = 1
```
| Logging level should be configured in a config file: NOTICE should be hidden when Piwik is in production | https://api.github.com/repos/matomo-org/matomo/issues/917/comments | 1 | 2009-08-11T02:22:11Z | 2014-07-08T10:01:06Z | https://github.com/matomo-org/matomo/issues/917 | 37,350,982 | 917 |
[
"matomo-org",
"matomo"
] | Attached is a patch against /core/DataFiles/SearchEngines.php with the following changes:
a) Added Google Zimbabwe (www.google.co.zw)
b) Updated URL of Metager (meta.rrz.uni-hannover.de). The old URL does not work anymore, so I think it's safe to replace it.
c) Added parameters as_q and as_epq for everything Google. These parameters are used by search appliances (instead of the usual q) and I've seen them for some, but not all Google sites. It seems wise to add them for all Google sites, though.
| Changes to /core/DataFiles/SearchEngines.php | https://api.github.com/repos/matomo-org/matomo/issues/916/comments | 6 | 2009-08-10T22:27:28Z | 2014-07-08T10:01:06Z | https://github.com/matomo-org/matomo/issues/916 | 37,350,981 | 916 |
[
"matomo-org",
"matomo"
] | After my update on my remote server i get this error.
SQLSTATE[[1203](42000]) User xxxxxxxxxx already has more than 'max_user_connections' active connections
Backtrace:
#0 /piwik/libs/Zend/Db/Adapter/Abstract.php(228): Zend_Db_Adapter_Pdo_Abstract->_connect()
#1 /piwik/core/Piwik.php(1213): Zend_Db_Adapter_Abstract->getConnection()
#2 /piwik/core/FrontController.php(206): Piwik::createDatabaseObject()
#3 /piwik/index.php(52): Piwik_FrontController->init()
#4 {main}
This is surprising for me because i don't get any problem on my local server.
On the remote server all the design from the main dashboard is also broken.
I deleted all the widget and then replace them again. Both problems of connection to the db and of the design were solve but after a logout/login the problem was there again.
| sql bug | https://api.github.com/repos/matomo-org/matomo/issues/915/comments | 1 | 2009-08-10T16:58:36Z | 2014-07-08T10:01:06Z | https://github.com/matomo-org/matomo/issues/915 | 37,350,980 | 915 |
[
"matomo-org",
"matomo"
] | Hi,
why not removing the js code from datatable.js which adds even odd classes and use smarty's cycle method?
regards
| Switch Odd/Even class of datatable to use smarty cycle? | https://api.github.com/repos/matomo-org/matomo/issues/914/comments | 4 | 2009-08-10T15:44:58Z | 2014-07-08T10:01:05Z | https://github.com/matomo-org/matomo/issues/914 | 37,350,979 | 914 |
[
"matomo-org",
"matomo"
] | The webbrowser iron (built on chromium; webkit engine) is recognized as safari!
Keywords: iron, browser
| Iron Webbrowser not recognized | https://api.github.com/repos/matomo-org/matomo/issues/913/comments | 7 | 2009-08-10T15:17:48Z | 2014-07-08T10:01:13Z | https://github.com/matomo-org/matomo/issues/913 | 37,350,978 | 913 |
[
"matomo-org",
"matomo"
] | No security vulnerabilities here. This is a test.
| Test sensitive tickets | https://api.github.com/repos/matomo-org/matomo/issues/912/comments | 3 | 2009-08-09T18:05:52Z | 2014-08-03T11:22:06Z | https://github.com/matomo-org/matomo/issues/912 | 37,350,976 | 912 |
[
"matomo-org",
"matomo"
] | PHP 5.1.x appears to handle backslash escaped characters differently from 5.2/5.3.
Example: core/SmartyPlugins/output.cachebuster where php 5.1.x reports preg_replace() [function.preg-replace]: Unknown modifier '.'
Propose using:
```
$pattern = array(
'~<script type="text/javascript" src="([^"]+)">~',
'~<script src="([^"]+)" type="text/javascript">~',
'~<link rel="stylesheet" type="text/css" href="([^"]+)"~',
);
```
| Review preg_match() usage | https://api.github.com/repos/matomo-org/matomo/issues/911/comments | 1 | 2009-08-08T21:02:40Z | 2014-07-08T10:01:05Z | https://github.com/matomo-org/matomo/issues/911 | 37,350,975 | 911 |
[
"matomo-org",
"matomo"
] | This is a nice-to-have feature deferred from #666:
- Progress to show which database migration is currently being run (in the web browser and/or on the command line)
Proposal:
- refactor core/Updater.php and plugins/CoreUpdater/Controller.php, moving Piwik_Updater::update() to the Controller; this would eliminate the messiness of a callback
Keywords: interesting
| Provide visual feedback on progress of database upgrade | https://api.github.com/repos/matomo-org/matomo/issues/910/comments | 3 | 2009-08-08T09:38:11Z | 2014-07-08T10:02:11Z | https://github.com/matomo-org/matomo/issues/910 | 37,350,974 | 910 |
[
"matomo-org",
"matomo"
] | The default char_set is ISO-8859-1. (Piwik does not currently specify/override this.)
Review usage of core/SmartyPlugins/modifier.escape.php. Force 'UTF-8' where necessary.
| modifier.escape.php - char_set? | https://api.github.com/repos/matomo-org/matomo/issues/909/comments | 2 | 2009-08-08T07:46:44Z | 2014-07-08T10:01:05Z | https://github.com/matomo-org/matomo/issues/909 | 37,350,973 | 909 |
[
"matomo-org",
"matomo"
] | I have 1 piwik installation running 3 sites. I have mapped the server alias of stats.domainname to /usr/share/piwik. But, no matter which site I login on, I'm always given the first site I made as my starting idSite.
It would be a really nice enhancement to look at the domainname for the URL and try to find a match in the list of registered sites and select that idSite by default. This would only be done on login. Having this small feature would make setups like mine seem to function just a tiny bit slicker.
Suggested algorithm:
parse_url()
try to find the part before .com or .co.uk but after www. or stats.
find idSite by soundex() match to list of sites
if not found, choose idSite normally
Keywords: idSite, login, domain, subdomain
| Add a hook to allow plugins to define the website ID to load by default when going to stats | https://api.github.com/repos/matomo-org/matomo/issues/908/comments | 8 | 2009-08-06T14:43:25Z | 2014-07-08T10:01:04Z | https://github.com/matomo-org/matomo/issues/908 | 37,350,972 | 908 |
[
"matomo-org",
"matomo"
] | Saw these come up today, not sure what the process is so just logging a ticket:
au.search.yahoo.com
search.hp.my.aol.com
| New search engine | https://api.github.com/repos/matomo-org/matomo/issues/907/comments | 4 | 2009-08-06T06:23:15Z | 2014-07-08T10:01:04Z | https://github.com/matomo-org/matomo/issues/907 | 37,350,971 | 907 |
[
"matomo-org",
"matomo"
] | As an alternative to Piwik's token auth, for added security in the API authentication.
PHP library implementations:
- ZendFramework Zend_Oauth
- http://code.google.com/p/oauth/ (Apache license)
- http://code.google.com/p/oauth-php/ (MIT license)
Keywords: interesting
| OAuth2 / oAuth plugin for API authentication | https://api.github.com/repos/matomo-org/matomo/issues/906/comments | 7 | 2009-08-05T23:38:00Z | 2024-09-13T09:13:14Z | https://github.com/matomo-org/matomo/issues/906 | 37,350,970 | 906 |
[
"matomo-org",
"matomo"
] | I think, we should avoid of line breaks within the labels in some (not all) Tag Clouds views, especially in tables "Length of Visit" and "Pages per Visit". In the same time, line breaks within the labels in other Tag Cloud tables, such as "Visitor Browsers", "List of Keywords" and so on, should be allowed.
The proposed patch implements this behavior, offering the new table view property dont_break_labels. See before.png and after.png snapshots.
Take attention: this patch also offers little cosmetic improvement -- corrected line align in Tag Cloud. Left indents of lines are equal now (see snapshots).
| Avoid linebreaks within the labels in some Tag Clouds (patch included) | https://api.github.com/repos/matomo-org/matomo/issues/905/comments | 9 | 2009-08-05T19:49:24Z | 2014-07-08T10:01:10Z | https://github.com/matomo-org/matomo/issues/905 | 37,350,969 | 905 |
[
"matomo-org",
"matomo"
] | Checking for MySQL error codes (via preg_match) are sprinkled in places in the code. (i.e., core/Updater.php, core/Updates/*.php, Dashboard.php, ExampleFeedburner.php, Installation/Controller.php, LanguagesManager.php)
To assist the non-MySQL Piwik ports, we should switch the detection to SQL codes, e.g.,
- '/1146/' becomes '/[42S02]/'
- '/1054/' becomes '/]42S22]/'
Throwing custom exceptions would be a nice-to-have, e.g.,
- Piwik_Db_TableNotFound
- Piwik_Db_ColumnNotFound
| MySQL error codes | https://api.github.com/repos/matomo-org/matomo/issues/904/comments | 4 | 2009-08-05T17:42:24Z | 2014-07-08T10:01:17Z | https://github.com/matomo-org/matomo/issues/904 | 37,350,968 | 904 |
[
"matomo-org",
"matomo"
] | Part of the misc folder cleanup.
Replace with onclick calls to piwikHelper.redirectToUrl.
| Remove misc/redirectToUrl.php | https://api.github.com/repos/matomo-org/matomo/issues/903/comments | 2 | 2009-08-04T17:30:13Z | 2014-07-08T10:01:03Z | https://github.com/matomo-org/matomo/issues/903 | 37,350,967 | 903 |
[
"matomo-org",
"matomo"
] | Hi, This is a great product. I am using it on an intranet running aspx on IIS. Piwik is running on Windows 2003 WAMP server.
I am getting the error below. I've tried reporting this bug twice and I don' think it has worked. The back trace is included.
Notice: Undefined index: debugTrackVisitsInsidePiwikUI in C:\wamp\www\piwik\tmp\templates_c\%%1D^1D5^1D598A14%%piwik_tag.tpl.php on line 3
Backtrace -->
#0 Piwik_ErrorHandler(8, Undefined index: debugTrackVisitsInsidePiwikUI, C:\wamp\www\piwik\tmp\templates_c\%%1D^1D5^1D598A14%%piwik_tag.tpl.php, 3, Array ([=> Piwik_Smarty Object ([template_dir](this]) => Array ([=> C:\wamp\www\piwik/plugins,[1](0]) => C:\wamp\www\piwik/themes/default,[=> C:\wamp\www\piwik/themes),[compile_dir](2]) => C:\wamp\www\piwik/tmp/templates_c,[=> configs,[plugins_dir](config_dir]) => Array ([=> C:\wamp\www\piwik/core/SmartyPlugins,[1](0]) => C:\wamp\www\piwik/libs/Smarty/plugins),[=> 1,[error_reporting](debugging]) => 2047,[=> ,[debugging_ctrl](debug_tpl]) => NONE,[=> 1,[force_compile](compile_check]) => ,[=> 0,[cache_dir](caching]) => C:\wamp\www\piwik/tmp/cache,[=> 3600,[cache_modified_check](cache_lifetime]) => ,[=> 0,[security](php_handling]) => ,[=> Array (),[security_settings](secure_dir]) => Array ([=> ,[IF_FUNCS](PHP_HANDLING]) => Array ([=> array,[1](0]) => list,[=> isset,[3](2]) => empty,[=> count,[5](4]) => sizeof,[=> in_array,[7](6]) => is_array,[=> true,[9](8]) => false,[=> null),[INCLUDE_ANY](10]) => ,[=> ,[MODIFIER_FUNCS](PHP_TAGS]) => Array ([=> count),[ALLOW_CONSTANTS](0]) => ,[=> 1),[trusted_dir](ALLOW_SUPER_GLOBALS]) => Array (),[=> {,[right_delimiter](left_delimiter]) => },[=> EGPCS,[request_use_auto_globals](request_vars_order]) => 1,[=> ,[use_sub_dirs](compile_id]) => ,[=> Array (),[default_resource_type](default_modifiers]) => file,[=> ,[autoload_filters](cache_handler_func]) => Array (),[=> 1,[config_booleanize](config_overwrite]) => 1,[=> ,[config_fix_newlines](config_read_hidden]) => 1,[=> ,[compiler_file](default_template_handler_func]) => Smarty_Compiler.class.php,[=> Smarty_Compiler,[config_class](compiler_class]) => Config_File,[=> Array ([SCRIPT_NAME](_tpl_vars]) => /piwik/index.php,[=> piwik=0.4.2,[piwikUrl](tag]) => http://yfevsa1.yf-uk.local/piwik/,[=> Array ([API](pluginsName]) => Array ([=> 1,[alwaysActivated](activated]) => ,[=> Array ([name](info]) => API,[=> All the data in Piwik is available through simple APIs. This plugin is the web service entry point, that you can call to get your Web Analytics data in xml, json, php, csv, etc. Discover the <a href=http://dev.piwik.org/trac/wiki/API/Reference>Piwik APIs</a>.,[author](description]) => Piwik,[=> http://piwik.org/,[version](homepage]) => 0.1)),[=> Array ([activated](Actions]) => 1,[=> ,[info](alwaysActivated]) => Array ([=> Actions,[description](name]) => Reports about the page views, the outlinks and downloads. Outlinks and Downloads tracking is automatic!,[=> Piwik,[homepage](author]) => http://piwik.org/,[=> 0.1)),[CoreAdminHome](version]) => Array ([=> 1,[alwaysActivated](activated]) => 1,[=> Array ([name](info]) => Administration area,[=> Administration area of Piwik.,[author](description]) => Piwik,[=> http://piwik.org/,[version](homepage]) => 0.1)),[=> Array ([activated](CoreHome]) => 1,[=> 1,[info](alwaysActivated]) => Array ([=> Homepage,[description](name]) => Web Analytics Reports Structure.,[=> Piwik,[homepage](author]) => http://piwik.org/,[=> 0.1)),[CorePluginsAdmin](version]) => Array ([=> 1,[alwaysActivated](activated]) => 1,[=> Array ([name](info]) => Plugins Management,[=> Plugins Administration Interface.,[author](description]) => Piwik,[=> http://piwik.org/,[version](homepage]) => 0.1)),[=> Array ([activated](CoreUpdater]) => 1,[=> 1,[info](alwaysActivated]) => Array ([=> Updater,[description](name]) => Piwik updating mechanism,[=> Piwik,[homepage](author]) => http://piwik.org/,[=> 0.1)),[DBStats](version]) => Array ([=> ,[alwaysActivated](activated]) => ,[=> Array ([name](info]) => Database statistics,[=> This plugin reports the database usage by Piwik tables.,[author](description]) => Piwik,[=> http://piwik.org/,[version](homepage]) => 0.1)),[=> Array ([activated](Dashboard]) => 1,[=> ,[info](alwaysActivated]) => Array ([=> Dashboard,[description](name]) => Your Web Analytics Dashboard. You can customize Your Dashboard: add new widgets, change the order of your widgets. Each user can access his own custom Dashboard.,[=> Piwik,[homepage](author]) => http://piwik.org/,[=> 0.1)),[ExampleAPI](version]) => Array ([=> 1,[alwaysActivated](activated]) => ,[=> Array ([name](info]) => Example API,[=> Example Plugin: How to create an API for your plugin, to export your data in multiple formats without any special coding? Visit the <a href="index.php?module=API&action=listAllAPI#ExampleAPI">ExampleAPI example methods</a>.,[author](description]) => Piwik,[=> http://piwik.org/,[version](homepage]) => 0.1)),[=> Array ([activated](ExampleFeedburner]) => 1,[=> ,[info](alwaysActivated]) => Array ([=> Example Feedburner,[description](name]) => Example Plugin: How to display your Feedburner subscriber in a Widget in the Dashboard?,[=> Piwik,[homepage](author]) => http://piwik.org/,[=> 0.1)),[ExamplePlugin](version]) => Array ([=> 1,[alwaysActivated](activated]) => ,[=> Array ([name](info]) => Example Plugin,[=> Example Plugin: This plugin shows how to create a very simple plugin, that exports two widgets in the Dashboard.,[author](description]) => Piwik,[=> http://piwik.org/,[version](homepage]) => 0.1,[=> 1)),[ExampleRssWidget](translationAvailable]) => Array ([=> 1,[alwaysActivated](activated]) => ,[=> Array ([name](info]) => Example Rss Widget,[=> Example Plugin: How to create a new widget that reads a RSS feed?,[author](description]) => Piwik,[=> http://piwik.org/,[version](homepage]) => 0.1)),[=> Array ([activated](ExampleUI]) => ,[=> ,[info](alwaysActivated]) => Array ([=> Example User Interface,[description](name]) => Example Plugin: This plugin shows how to work with the Piwik UI: create tables, graphs, etc.,[=> Piwik,[homepage](author]) => http://piwik.org/,[=> 0.1)),[Feedback](version]) => Array ([=> 1,[alwaysActivated](activated]) => ,[=> Array ([name](info]) => Feedback,[=> Send your Feedback to the Piwik Team in one click. Share your ideas and suggestions with us!,[author](description]) => Piwik,[=> http://piwik.org/,[version](homepage]) => 0.1)),[=> Array ([activated](Goals]) => ,[=> ,[info](alwaysActivated]) => Array ([=> (ALPHA) Goal Tracking,[description](name]) => Create Goals and see reports about your goal conversions: evolution over time, revenue per visit, conversions per referer, per keyword, etc.,[=> Piwik,[homepage](author]) => http://piwik.org/,[=> 0.1,[TrackerPlugin](version]) => 1)),[=> Array ([activated](Installation]) => 1,[=> ,[info](alwaysActivated]) => Array ([=> Installation,[description](name]) => Installation process of Piwik. The Installation is usually done once only. If the configuration file config/config.inc.php is deleted, the installation will start again.,[=> Piwik,[homepage](author]) => http://piwik.org/,[=> 0.1)),[LanguagesManager](version]) => Array ([=> 1,[alwaysActivated](activated]) => ,[=> Array ([name](info]) => Languages Management,[=> This plugin will display a list of the available languages for the Piwik interface. The language selected will be saved in the preferences for each user.,[author](description]) => Piwik,[=> http://piwik.org/,[version](homepage]) => 0.1)),[=> Array ([activated](Live]) => ,[=> ,[info](alwaysActivated]) => Array ([=> Live Visitors,[description](name]) => Live Visitors!,[=> Piwik,[homepage](author]) => http://piwik.org/,[=> 0.1)),[Login](version]) => Array ([=> 1,[alwaysActivated](activated]) => ,[=> Array ([name](info]) => Login,[=> Login Authentication plugin, reading the credentials from the config/config.inc.php file for the Super User, and from the Database for the other users. Can be easily replaced to introduce a new Authentication mechanism (OpenID, htaccess, custom Auth, etc.).,[author](description]) => Piwik,[=> http://piwik.org/,[version](homepage]) => 0.1)),[=> Array ([activated](Provider]) => 1,[=> ,[info](alwaysActivated]) => Array ([=> Provider,[description](name]) => Reports the Provider of the visitors.,[=> Piwik,[homepage](author]) => http://piwik.org/,[=> 0.1,[TrackerPlugin](version]) => 1)),[=> Array ([activated](Referers]) => 1,[=> ,[info](alwaysActivated]) => Array ([=> Referers,[description](name]) => Reports the Referers data: Search Engines, Keywords, Websites, Campaign Tracking, Direct Entry. ,[=> Piwik,[homepage](author]) => http://piwik.org/,[=> 0.1)),[SitesManager](version]) => Array ([=> 1,[alwaysActivated](activated]) => ,[=> Array ([name](info]) => Sites Management,[=> Websites Management in Piwik: Add a new Website, Edit an existing one, Show the Javascript code to include on your pages. All the actions are also available through the API.,[author](description]) => Piwik,[=> http://piwik.org/,[version](homepage]) => 0.1)),[=> Array ([activated](UserCountry]) => 1,[=> ,[info](alwaysActivated]) => Array ([=> Visitors Country,[description](name]) => Reports the Country of the visitors.,[=> Piwik,[homepage](author]) => http://piwik.org/,[=> 0.1)),[UserSettings](version]) => Array ([=> 1,[alwaysActivated](activated]) => ,[=> Array ([name](info]) => Visitors Settings,[=> Reports various User Settings: Browser, Browser Family, Operating System, Plugins, Resolution, Global Settings.,[author](description]) => Piwik,[=> http://piwik.org/,[version](homepage]) => 0.1)),[=> Array ([activated](UsersManager]) => 1,[=> ,[info](alwaysActivated]) => Array ([=> Users Management,[description](name]) => Users Management in Piwik: add a new User, edit an existing one, update the permissions. All the actions are also available through the API.,[=> Piwik,[homepage](author]) => http://piwik.org/,[=> 0.1)),[VisitFrequency](version]) => Array ([=> 1,[alwaysActivated](activated]) => ,[=> Array ([name](info]) => Visits Frequency,[=> Reports various statistics about the Returning Visitor versus the First time visitor.,[author](description]) => Piwik,[=> http://piwik.org/,[version](homepage]) => 0.1)),[=> Array ([activated](VisitTime]) => 1,[=> ,[info](alwaysActivated]) => Array ([=> Visits Time,[description](name]) => Reports the Local and Server time. Server time information can be useful to schedule a maintenance on the Website.,[=> Piwik,[homepage](author]) => http://piwik.org/,[=> 0.1)),[VisitorInterest](version]) => Array ([=> 1,[alwaysActivated](activated]) => ,[=> Array ([name](info]) => Visitors Interest,[=> Reports about the Visitor Interest: number of pages viewed, time spent on the Website.,[author](description]) => Piwik,[=> http://piwik.org/,[version](homepage]) => 0.1)),[=> Array ([activated](VisitsSummary]) => 1,[=> ,[info](alwaysActivated]) => Array ([=> Visits Summary,[description](name]) => Reports the general Analytics numbers: visits, unique visitors, number of actions, Bounce Rate, etc.,[=> Piwik,[homepage](author]) => http://piwik.org/,[=> 0.1)),[Widgetize](version]) => Array ([=> 1,[alwaysActivated](activated]) => ,[=> Array ([name](info]) => Widgetize your data!,[=> The plugin makes it very easy to export any Piwik Widget in your Blog, Website or on Igoogle and Netvibes!,[author](description]) => Piwik,[=> http://piwik.org/,[version](homepage]) => 0.1))),[=> Array ([Plugins](menu]) => Array ([=> CorePluginsAdmin,[action](module]) => index),[=> Array ([module](Users]) => UsersManager,[=> index),[Websites](action]) => Array ([=> SitesManager,[action](module]) => index)),[=> CorePluginsAdmin,[currentPluginName](currentModule]) => Plugins Management,[=> admin,[sites](userLogin]) => Array ([=> Array ([idsite](0]) => 1,[=> YFi,[main_url](name]) => http://yfi,[=> 2009-07-31 11:40:36,[feedburnerName](ts_created]) => )),[=> 1,[url](showWebsiteSelectorInUserInterface]) => http://yfevsa1.yf-uk.local/piwik/index.php?module=CorePluginsAdmin,[=> 63f45b0163eb13db8ddef40a9cf00c34,[userHasSomeAdminAccess](token_auth]) => 1,[=> 1,[piwik_version](userIsSuperUser]) => 0.4.2,[=> ,[loginModule](latest_version_available]) => Login,[=> 0.219,[totalNumberOfQueries](totalTimeGeneration]) => 0,[=> ,[showPeriodSelection](showSitesSelection]) => ,[=> Array ([activated](plugin]) => 1,[=> ,[info](alwaysActivated]) => Array ([=> Widgetize your data!,[description](name]) => The plugin makes it very easy to export any Piwik Widget in your Blog, Website or on Igoogle and Netvibes!,[=> Piwik,[homepage](author]) => http://piwik.org/,[=> 0.1)),[name](version]) => Widgetize),[=> ,[_sections](_smarty_vars]) => Array (),[=> Array ([menu](_foreach]) => Array ([=> 3,[iteration](total]) => 3)),[=> Array (),[_conf_obj](_tag_stack]) => ,[=> Array ([0](_config]) => Array ([=> Array (),[files](vars]) => Array ()),[=> Array ([vars](1]) => Array (),[=> Array ()),[2](files]) => Array ([=> Array (),[files](vars]) => Array ())),[=> f8d698aea36fcbead2b9d5359ffca76f,[_version](_smarty_md5]) => 2.6.25,[=> 2,[_compile_id](_inclusion_depth]) => ,[=> SMARTY_DEBUG,[_smarty_debug_info](_smarty_debug_id]) => Array ([=> Array ([type](0]) => template,[=> CorePluginsAdmin/templates/manage.tpl,[depth](filename]) => 0),[=> Array ([type](1]) => template,[=> CoreAdminHome/templates/header.tpl,[depth](filename]) => 1,[=> 0.159462928772),[2](exec_time]) => Array ([=> template,[filename](type]) => CoreHome/templates/js_global_variables.tpl,[=> 2,[exec_time](depth]) => 0.00406002998352),[=> Array ([type](3]) => template,[=> CoreHome/templates/top_bar.tpl,[depth](filename]) => 2,[=> 0.133083105087),[4](exec_time]) => Array ([=> template,[filename](type]) => CoreHome/templates/header_message.tpl,[=> 2,[exec_time](depth]) => 0.00432586669922),[=> Array ([type](5]) => template,[=> CoreHome/templates/logo.tpl,[depth](filename]) => 2,[=> 0.00438904762268),[6](exec_time]) => Array ([=> template,[filename](type]) => CoreHome/templates/js_disabled_notice.tpl,[=> 2,[exec_time](depth]) => 0.0040590763092),[=> Array ([type](7]) => template,[=> CoreAdminHome/templates/menu.tpl,[depth](filename]) => 1,[=> 0.0043351650238),[8](exec_time]) => Array ([=> template,[filename](type]) => CoreAdminHome/templates/footer.tpl,[=> 1),[9](depth]) => Array ([=> template,[filename](type]) => CoreHome/templates/piwik_tag.tpl,[=> 2)),[_cache_info](depth]) => Array (),[=> 420,[_dir_perms](_file_perms]) => 505,[=> Array (),[_plugins](_reg_objects]) => Array ([=> Array ([translate](modifier]) => Array ([=> smarty_modifier_translate,[1](0]) => CorePluginsAdmin/templates/manage.tpl,[=> 8,[3](2]) => 1,[=> 1),[escape](4]) => Array ([=> smarty_modifier_escape,[1](0]) => CorePluginsAdmin/templates/manage.tpl,[=> 31,[3](2]) => 1,[=> 1),[nl2br](4]) => Array ([=> smarty_modifier_nl2br,[1](0]) => CorePluginsAdmin/templates/manage.tpl,[=> 31,[3](2]) => 1,[=> 1),[urlRewriteWithParameters](4]) => Array ([=> smarty_modifier_urlRewriteWithParameters,[1](0]) => CoreHome/templates/top_bar.tpl,[=> 5,[3](2]) => 1,[=> 1)),[function](4]) => Array ([=> Array ([0](postEvent]) => smarty_function_postEvent,[=> CoreAdminHome/templates/header.tpl,[2](1]) => 25,[=> 1,[4](3]) => 1),[=> Array ([0](assignTopBar]) => smarty_function_assignTopBar,[=> CoreHome/templates/top_bar.tpl,[2](1]) => 1,[=> 1,[4](3]) => 1)),[=> Array (),[compiler](block]) => Array (),[=> Array (),[postfilter](prefilter]) => Array (),[=> Array ([cachebuster](outputfilter]) => Array ([=> smarty_outputfilter_cachebuster,[1](0]) => ,[=> ,[3](2]) => 1,[=> 1),[trimwhitespace](4]) => Array ([=> smarty_outputfilter_trimwhitespace,[1](0]) => ,[=> ,[3](2]) => 1,[=> 1)),[resource](4]) => Array (),[=> Array ()),[_cache_serials](insert]) => Array (),[=> ,[_cache_including](_cache_include]) => ,[=> Array ([get](_supers]) => Array ([=> CorePluginsAdmin),[post](module]) => Array (),[=> Array ([HTTP_ACCEPT](server]) => _/_,[=> http://yfevsa1.yf-uk.local/piwik/index.php?module=CoreHome&action=index&idSite=1&period=day&date=2009-07-31,[HTTP_ACCEPT_LANGUAGE](HTTP_REFERER]) => en-gb,[=> x86,[HTTP_USER_AGENT](HTTP_UA_CPU]) => Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; MS-RTC LM 8; InfoPath.2),[=> no-cache,[HTTP_HOST](HTTP_PRAGMA]) => yfevsa1.yf-uk.local,[=> piwik_visitor1=1%3DOGUwNzY3YjIyYmE4YWE2MzA0YTVkMjUzODU5ZWZiNTA%3D%3A2%3DMTI0OTA0MDE3NQ%3D%3D%3A3%3DMTI0OTAzODExNw%3D%3D%3A4%3DNA%3D%3D%3A5%3DNA%3D%3D%3A11%3DMA%3D%3D; piwik_auth=login%3DYWRtaW4%3D%3Atoken_auth%3DNjNmNDViMDE2M2ViMTNkYjhkZGVmNDBhOWNmMDBjMzQ%3D; yforadbprod_prod=s-VqxL5WLlLa5_piWbr9Kqyw:S; yforaodevdb32b_itr3=e9iXlDLEHG8DsEbvDRuSYkZF:S; PHPSESSID=c92ba8ad87ed4ab85d26977d5a9e9ee1,[HTTP_CONNECTION](HTTP_COOKIE]) => keep-alive,[=> 1.1 YFISA1,[PATH](HTTP_VIA]) => C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\Perforce\;C:\wamp\www\ant16;C:\strawberry\c\bin;C:\strawberry\perl\bin,[=> C:\WINDOWS,[COMSPEC](SystemRoot]) => C:\WINDOWS\system32\cmd.exe,[=> .COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH,[WINDIR](PATHEXT]) => C:\WINDOWS,[SERVER_SIGNATURE] => <address>Apache/2.0.59 (Win32) PHP/5.1.6 Server at yfevsa1.yf-uk.local Port 80</address>
,[=> Apache/2.0.59 (Win32) PHP/5.1.6,[SERVER_NAME](SERVER_SOFTWARE]) => yfevsa1.yf-uk.local,[=> 10.3.5.181,[SERVER_PORT](SERVER_ADDR]) => 80,[=> 10.3.254.211,[DOCUMENT_ROOT](REMOTE_ADDR]) => C:/wamp/www,[=> helpdesk@yorkshire-forward.com,[SCRIPT_FILENAME](SERVER_ADMIN]) => C:/wamp/www/piwik/index.php,[=> 53279,[GATEWAY_INTERFACE](REMOTE_PORT]) => CGI/1.1,[=> HTTP/1.0,[REQUEST_METHOD](SERVER_PROTOCOL]) => GET,[=> module=CorePluginsAdmin,[REQUEST_URI](QUERY_STRING]) => /piwik/index.php?module=CorePluginsAdmin,[=> /piwik/index.php,[PHP_SELF](SCRIPT_NAME]) => /piwik/index.php,[=> 1249374960,[argv](REQUEST_TIME]) => Array ([=> module=CorePluginsAdmin),[argc](0]) => 1),[=> Array (),[request](session]) => Array ([=> CorePluginsAdmin,[piwik_visitor1](module]) => 1=OGUwNzY3YjIyYmE4YWE2MzA0YTVkMjUzODU5ZWZiNTA=:2=MTI0OTA0MDE3NQ==:3=MTI0OTAzODExNw==:4=NA==:5=NA==:11=MA==,[=> login=YWRtaW4=:token_auth=NjNmNDViMDE2M2ViMTNkYjhkZGVmNDBhOWNmMDBjMzQ=,[yforadbprod_prod](piwik_auth]) => s-VqxL5WLlLa5_piWbr9Kqyw:S,[=> e9iXlDLEHG8DsEbvDRuSYkZF:S,[PHPSESSID](yforaodevdb32b_itr3]) => c92ba8ad87ed4ab85d26977d5a9e9ee1),[=> Array ([piwik_visitor1](cookies]) => 1=OGUwNzY3YjIyYmE4YWE2MzA0YTVkMjUzODU5ZWZiNTA=:2=MTI0OTA0MDE3NQ==:3=MTI0OTAzODExNw==:4=NA==:5=NA==:11=MA==,[=> login=YWRtaW4=:token_auth=NjNmNDViMDE2M2ViMTNkYjhkZGVmNDBhOWNmMDBjMzQ=,[yforadbprod_prod](piwik_auth]) => s-VqxL5WLlLa5_piWbr9Kqyw:S,[=> e9iXlDLEHG8DsEbvDRuSYkZF:S,[PHPSESSID](yforaodevdb32b_itr3]) => c92ba8ad87ed4ab85d26977d5a9e9ee1),[=> Array ([ALLUSERSPROFILE](env]) => C:\Documents and Settings\All Users,[=> C:\Program Files\Java\jre1.6.0_05\bin,[ClusterLog](CLASSPATH]) => C:\WINDOWS\Cluster\cluster.log,[=> C:\Program Files\Common Files,[COMPUTERNAME](CommonProgramFiles]) => YFEVSA1,[=> C:\WINDOWS\system32\cmd.exe,[FP_NO_HOST_CHECK](ComSpec]) => NO,[=> 1,[JAVA_HOME](FTP_PASSIVE]) => c:\JavaSDK,[=> 2,[OS](NUMBER_OF_PROCESSORS]) => Windows_NT,[=> C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\Perforce\;C:\wamp\www\ant16;C:\strawberry\c\bin;C:\strawberry\perl\bin,[PATHEXT](Path]) => .COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH,[=> x86,[PROCESSOR_IDENTIFIER](PROCESSOR_ARCHITECTURE]) => x86 Family 6 Model 15 Stepping 8, GenuineIntel,[=> 6,[PROCESSOR_REVISION](PROCESSOR_LEVEL]) => 0f08,[=> C:\Program Files,[SystemDrive](ProgramFiles]) => C:,[=> C:\WINDOWS,[TEMP](SystemRoot]) => C:\WINDOWS\TEMP,[=> dumb,[TMP](TERM]) => C:\WINDOWS\TEMP,[=> C:\Documents and Settings\Default User,[windir](USERPROFILE]) => C:\WINDOWS,[=> 4076))),[params](AP_PARENT_PID]) => Array ([=> CoreHome/templates/piwik_tag.tpl,[smarty_include_vars](smarty_include_tpl_file]) => Array ()),[=> Array (),[debug_start_time](_params]) => 1249374960.61,[=> 9,[_smarty_compile_path](included_tpls_idx]) => C:\wamp\www\piwik/tmp/templates_c\%%1D^1D5^1D598A14%%piwik_tag.tpl.php)) called at [C:\wamp\www\piwik\tmp\templates_c\%%1D^1D5^1D598A14%%piwik_tag.tpl.php:3]
#1 include(C:\wamp\www\piwik\tmp\templates_c\%%1D^1D5^1D598A14%%piwik_tag.tpl.php) called at [C:\wamp\www\piwik\libs\Smarty\Smarty.class.php:1889]
#2 Smarty->_smarty_include(Array ([=> CoreHome/templates/piwik_tag.tpl,[smarty_include_vars](smarty_include_tpl_file]) => Array ())) called at [C:\wamp\www\piwik\tmp\templates_c\%%C1^C18^C18D9C58%%footer.tpl.php:5]
#3 include(C:\wamp\www\piwik\tmp\templates_c\%%C1^C18^C18D9C58%%footer.tpl.php) called at [C:\wamp\www\piwik\libs\Smarty\Smarty.class.php:1889]
#4 Smarty->_smarty_include(Array ([=> CoreAdminHome/templates/footer.tpl,[smarty_include_vars](smarty_include_tpl_file]) => Array ())) called at [C:\wamp\www\piwik\tmp\templates_c\%%94^949^9498696C%%manage.tpl.php:92]
#5 include(C:\wamp\www\piwik\tmp\templates_c\%%94^949^9498696C%%manage.tpl.php) called at [C:\wamp\www\piwik\libs\Smarty\Smarty.class.php:1283]
#6 Smarty->fetch(CorePluginsAdmin/templates/manage.tpl) called at [C:\wamp\www\piwik\core\View.php:124]
#7 Piwik_View->render() called at [C:\wamp\www\piwik\plugins\CorePluginsAdmin\Controller.php:37]
#8 Piwik_CorePluginsAdmin_Controller->index()
#9 call_user_func_array(Array ([=> Piwik_CorePluginsAdmin_Controller Object ([](0]) => CorePluginsAdmin,[=> 2009-08-03,[](]) => Piwik_Date Object ([=> 1249254000),[](]) => Array ([=> General_ColumnLabel,[nb_visits](label]) => General_ColumnNbVisits,[=> General_ColumnNbActions,[max_actions](nb_actions]) => General_ColumnMaxActions,[=> General_ColumnSumVisitLength,[nb_uniq_visitors](sum_visit_length]) => General_ColumnNbUniqVisitors,[=> General_ColumnActionsPerVisit,[avg_time_on_site](nb_actions_per_visit]) => General_ColumnAvgTimeOnSite,[=> General_ColumnBounceRate,[revenue_per_visit](bounce_rate]) => General_ColumnValuePerVisit,[=> General_ColumnVisitsWithConversions)),[1](goals_conversion_rate]) => index), Array ()) called at [C:\wamp\www\piwik\core\FrontController.php:119]
#10 Piwik_FrontController->dispatch() called at [C:\wamp\www\piwik\index.php:53]
regards
ggreaves
| Undefined index: debugTrackVisitsInsidePiwikUI | https://api.github.com/repos/matomo-org/matomo/issues/902/comments | 2 | 2009-08-04T16:42:02Z | 2014-07-08T10:01:03Z | https://github.com/matomo-org/matomo/issues/902 | 37,350,966 | 902 |
[
"matomo-org",
"matomo"
] | Piwik requires MySQL 4.1+. This is documented in http://piwik.org/docs/requirements.
We can test for the MySQL server version but this requires a connection to the server, so it can't be shown on the earlier requirements screen.
```
mysql> select version();
+--------------------+
| version() |
+--------------------+
| 5.0.75-0ubuntu10.2 |
+--------------------+
1 row in set (0.00 sec)
```
| Installer should check MySQL server version and warn if < 4.1 | https://api.github.com/repos/matomo-org/matomo/issues/901/comments | 1 | 2009-08-04T16:19:53Z | 2014-08-03T11:22:13Z | https://github.com/matomo-org/matomo/issues/901 | 37,350,965 | 901 |
[
"matomo-org",
"matomo"
] | Hi, great product you have developed here. I'm using it on an organisation's intranet which is running on IIS. piwik is running on windows 2003 WAMP server.
I am getting the error below however, everything seems to be running. I'm upload a back trace file too.
---
Notice: Undefined index: debugTrackVisitsInsidePiwikUI in C:\wamp\www\piwik\tmp\templates_c\%%1D^1D5^1D598A14%%piwik_tag.tpl.php on line 3
Regards
ggreaves
| Undefined index: debugTrackVisitsInsidePiwikUI | https://api.github.com/repos/matomo-org/matomo/issues/900/comments | 2 | 2009-08-04T11:51:10Z | 2014-07-08T10:01:02Z | https://github.com/matomo-org/matomo/issues/900 | 37,350,964 | 900 |
[
"matomo-org",
"matomo"
] | Hi, You have got a great product here and I'm testing it against an organisation's intranet on IIS. I've got the message below and wonder if it has come up before, I'm also uploading a backtrace. I did a search on the site and so far nothing has come up.
Notice: Undefined index: debugTrackVisitsInsidePiwikUI in C:\wamp\www\piwik\tmp\templates_c\%%1D^1D5^1D598A14%%piwik_tag.tpl.php on line 3
| Plugins Management Page errors | https://api.github.com/repos/matomo-org/matomo/issues/899/comments | 2 | 2009-08-04T11:30:08Z | 2014-07-08T10:01:02Z | https://github.com/matomo-org/matomo/issues/899 | 37,350,962 | 899 |
[
"matomo-org",
"matomo"
] | This ticket is about defining the scope and new features of a Ecommerce plugin in Piwik.
The [Ecommerce statistics](http://piwik.org/docs/ecommerce-analytics/) feature is now built in Piwik, check it out!
Keywords: ecommerce plugin
| Piwik Ecommerce Tracking Plugin | https://api.github.com/repos/matomo-org/matomo/issues/898/comments | 33 | 2009-08-03T17:51:12Z | 2014-07-08T10:17:02Z | https://github.com/matomo-org/matomo/issues/898 | 37,350,959 | 898 |
[
"matomo-org",
"matomo"
] | This is not normally a problem for most users since releases do not include the unit tests.
For the benefit of developers, however...
While fixing #896, I noticed version_core in my live database got munged. When I revisited the dashboard, it prompted a database upgrade (from 0.2.9).
| unit test should not access live database | https://api.github.com/repos/matomo-org/matomo/issues/897/comments | 3 | 2009-08-03T17:16:09Z | 2014-07-08T10:01:01Z | https://github.com/matomo-org/matomo/issues/897 | 37,350,957 | 897 |
[
"matomo-org",
"matomo"
] | If ReleaseCheckList.test.php runs before SitesManager.test.php
02-Aug-2009 14:57:27 [exec] Fatal error: Call to a member function fetchAll() on a non-object in /mnt/bamboo-agent/build-dir/PIWIK-TRUNK/build/core/PluginsFunctions/Sql.php on line 36
If API/DocumentationGenerator.test.php runs after SitesManager.test.php
Exception: ../tests/core/API/DocumentationGenerator.test.php -> Test_Piwik_API_DocumentationGenerator -> test_callableApiMethods_doNotFail -> Unexpected exception of type [with message [You can't access this resource as it requires a 'view' access for the website id = 2.](Piwik_Access_NoAccessException]) in [line 339](/home/apang/work/piwik/trunk/core/Access.php)
| all_tests.php failing -- test runner side effects | https://api.github.com/repos/matomo-org/matomo/issues/896/comments | 2 | 2009-08-02T23:21:01Z | 2014-07-08T10:06:43Z | https://github.com/matomo-org/matomo/issues/896 | 37,350,956 | 896 |
[
"matomo-org",
"matomo"
] | Hi, since the upgrade to 0.42 I'm getting a Notice including Stacktrace. This happens on every page inside the Settings.
http://pastebin.com/m427a5517
This is the notice that seems to occur because of an undefined index in one of the template files.
Keywords: notice
| Getting notice inside Settings | https://api.github.com/repos/matomo-org/matomo/issues/895/comments | 1 | 2009-08-02T02:40:45Z | 2014-07-08T10:01:00Z | https://github.com/matomo-org/matomo/issues/895 | 37,350,954 | 895 |
[
"matomo-org",
"matomo"
] | - warning when updating user_language
- installer does not prompt to re-use existing tables before database update
- mandatory updates don't consistently throw Piwik_Updater_UpdateException
Table inconsistencies between fresh install and upgrade path:
- the 0.2.33 update (utf8 conversion) misses tables created by plugins
- also in 0.2.33, TEXT fields became MEDIUMTEXT fields
- in 0.2.27, visit_goal_converted is inconsistent between Piwik.php and the update (VARCHAR vs TINYINT)
- the 0.2.12 update didn't drop the index_idaction INDEX on `log_action` table
- in 0.2.2 (there was no update), feedburnerName changed from NOT NULL to DEFAULT NULL on `site` table
- in 0.1.7 (there was no update), location_provider changed from NOT NULL to DEFAULT NULL on `log_visit` table
Re-open #522:
- tables created with `login` column still VARCHAR(20)
| Problems updating from Piwik 0.1 to trunk | https://api.github.com/repos/matomo-org/matomo/issues/894/comments | 6 | 2009-08-01T14:24:51Z | 2014-07-08T10:01:00Z | https://github.com/matomo-org/matomo/issues/894 | 37,350,953 | 894 |
[
"matomo-org",
"matomo"
] | 1. Since we use urldecode to safe decode labels, we need to use in labels "%2b" instead of "+" sign, because the last one urldecodes to regular space. See attached snapshot: "15 min" displayed, should be "15+ min". Simple patch:
```
diff -Ebur piwik-4.2.orig/plugins/VisitorInterest/API.php piwik-4.2/plugins/VisitorInterest/API.php
--- piwik-4.2.orig/plugins/VisitorInterest/API.php 2009-05-31 15:31:14 +0400
+++ piwik-4.2/plugins/VisitorInterest/API.php 2009-08-01 00:16:30 +0400
@@ -78,7 +78,7 @@
}
$time = intval($label) / 60;
$plusXMin = Piwik_Translate('VisitorInterest_PlusXMin');
- return sprintf($plusXMin, '+' . $time);
+ return sprintf($plusXMin, $time. urlencode('+'));
}
function Piwik_getPageGapLabel($label)
```
1. Labels in "Lenght of Visits" contain extra spaces after '-' sign (see the same snapshot, one of them is selected). Patch for English:
```
diff -Ebur piwik-4.2.orig/lang/en.php piwik-4.2/lang/en.php
--- piwik-4.2.orig/lang/en.php 2009-07-03 04:20:31 +0400
+++ piwik-4.2/lang/en.php 2009-07-31 22:51:05 +0400
@@ -585,7 +585,7 @@
'VisitorInterest_WidgetPages' => 'Pages per visit',
'VisitorInterest_SubmenuFrequencyLoyalty' => 'Frequency & Loyalty',
'VisitorInterest_PlusXMin' => '%s min',
- 'VisitorInterest_BetweenXYMinutes' => '%1s-%2s min',
+ 'VisitorInterest_BetweenXYMinutes' => '%1s-%1s min',
'VisitorInterest_OnePage' => '1 page',
'VisitorInterest_NPages' => '%s pages',
'VisitorInterest_BetweenXYSeconds' => '%1s-%2ss',
```
If you should accept this patch, I can prepare respective patches for other languages.
| Minor improvements for "Lenght of Visits" view (patches included) | https://api.github.com/repos/matomo-org/matomo/issues/893/comments | 2 | 2009-08-01T00:12:45Z | 2014-07-08T10:01:00Z | https://github.com/matomo-org/matomo/issues/893 | 37,350,952 | 893 |
[
"matomo-org",
"matomo"
] | We have unsorted data in normal table view of Lenght of Visits for now. This looks slightly strange: see before.png attachment.
This simple patch solves the problem (see after.png attachment).
```
diff -Ebur piwik-4.2.orig/plugins/VisitorInterest/Controller.php piwik-4.2/plugins/VisitorInterest/Controller.php
--- piwik-4.2.orig/plugins/VisitorInterest/Controller.php 2009-07-08 08:19:14 +0400
+++ piwik-4.2/plugins/VisitorInterest/Controller.php 2009-07-31 20:59:21 +0400
@@ -25,6 +25,7 @@
$view->init( $this->pluginName, __FUNCTION__, "VisitorInterest.getNumberOfVisitsPerVisitDuration" );
$view->setColumnsToDisplay( array('label','nb_visits') );
+ $view->setSortedColumn( 'label', 'asc' );
$view->setColumnTranslation('label', Piwik_Translate('VisitorInterest_ColumnVisitDuration'));
$view->disableSort();
$view->disableExcludeLowPopulation();
```
| Unsorted table view in Length of Visits (patch included) | https://api.github.com/repos/matomo-org/matomo/issues/892/comments | 3 | 2009-07-31T19:49:04Z | 2014-07-08T10:01:00Z | https://github.com/matomo-org/matomo/issues/892 | 37,350,951 | 892 |
[
"matomo-org",
"matomo"
] | From [forum](http://forum.piwik.org/index.php?showtopic=1300).
SQLSTATE[HY000]: General error: 1271 Illegal mix of collations for operation 'concat'
Proposed fix:
```
Index: Piwik.php
===================================================================
--- Piwik.php (revision 1344)
+++ Piwik.php (working copy)
@@ -1233,6 +1233,7 @@
Piwik_PostEvent('Reporting.createDatabase', $db);
if(is_null($db))
{
+ $dbInfos['driver_options'] = array(PDO::MYSQL_ATTR_INIT_COMMAND => 'SET NAMES UTF8;');
$db = Zend_Db::factory($config->database->adapter, $dbInfos);
$db->getConnection();
// see http://framework.zend.com/issues/browse/ZF-1398
```
| Illegal mix of collations for operation 'concat' | https://api.github.com/repos/matomo-org/matomo/issues/891/comments | 4 | 2009-07-31T16:32:59Z | 2014-08-03T11:22:13Z | https://github.com/matomo-org/matomo/issues/891 | 37,350,950 | 891 |
[
"matomo-org",
"matomo"
] | Attached patch is against release 4.2. Icons are attached too.
| Little update for SearchEngines (3 added, 1 changed) | https://api.github.com/repos/matomo-org/matomo/issues/890/comments | 4 | 2009-07-31T14:34:47Z | 2014-07-08T10:01:00Z | https://github.com/matomo-org/matomo/issues/890 | 37,350,949 | 890 |
[
"matomo-org",
"matomo"
] | If not already described elsewhere:
- config.ini.php - overriding a setting from global.ini.php; unix_socket
- bootstrap.php - setting PIWIK_INCLUDE_PATH, PIWIK_ENABLE_SESSION_START, PIWIK_DISPLAY_ERRORS
- crossdomain.xml
- .htaccess - http auth; session.auto_start
???
| Advanced server configuration guide | https://api.github.com/repos/matomo-org/matomo/issues/889/comments | 5 | 2009-07-29T08:08:55Z | 2014-07-08T10:01:06Z | https://github.com/matomo-org/matomo/issues/889 | 37,350,948 | 889 |
[
"matomo-org",
"matomo"
] | see examples:
```
15 2 10:21:24 fac5b7964e2f833b4d05064216e61bd3 0 2009-07-25 12:21:26 2009-07-25 12:21:26 2009-07-25 22 22 1 10 0 2 Bing http://www.bing.com/search?q=state state 59dba39d4ac8516dc36d3ce281e55998 WXP IE 6.0 800x600 0 0 0 0 0 0 0 0 0 1 1094151573 en-us us amn msn.com
17 2 10:22:40 03252e413a9d744372ac1f13b9774afd 0 2009-07-25 12:22:41 2009-07-25 12:22:41 2009-07-25 29 29 1 10 0 2 Bing http://www.bing.com/search?q=state state 94151ba6ce95c64b614bc1d28d5e8791 WS3 IE 6.0 800x600 0 0 0 0 0 0 0 0 0 1 1094151810 en-us us amn Ip
26 2 10:27:41 bfd1154ae089c355b719b88bb7f23066 0 2009-07-25 12:27:43 2009-07-25 12:27:43 2009-07-25 62 62 1 10 0 2 Bing http://www.bing.com/search?q=schedule schedule 4a10e45f98e3a97ae602350df210fd35 WS3 IE 6.0 800x600 0 0 0 0 0 0 0 0 0 1 1094151718 en-us us amn Ip
```
| Bing running spam searches should be banned | https://api.github.com/repos/matomo-org/matomo/issues/888/comments | 1 | 2009-07-28T22:27:42Z | 2014-07-08T10:00:59Z | https://github.com/matomo-org/matomo/issues/888 | 37,350,947 | 888 |
[
"matomo-org",
"matomo"
] | The build script should exclude .htaccess and robots.txt from the build, to not overwrite the user's local configuration.
e.g.,
- [http auth access](http://forum.piwik.org/index.php?showtopic=1206)
- session.auto_start=0 (#881)
| Do not include .htaccess or robots.txt in build | https://api.github.com/repos/matomo-org/matomo/issues/887/comments | 2 | 2009-07-28T18:59:33Z | 2014-07-08T10:00:59Z | https://github.com/matomo-org/matomo/issues/887 | 37,350,946 | 887 |
[
"matomo-org",
"matomo"
] | index.php and piwik.php would load piwik/bootstrap.php, if it exists, to allow for local configuration tweaks; bootstrap.php would not exist in SVN
Tweakable:
- PIWIK_INCLUDE_PATH (see #656)
- PIWIK_ENABLE_SESSION_START (see #885)
Introduce:
- PIWIK_DOCUMENT_ROOT (also #656)
| Load bootstrap.php if it exists | https://api.github.com/repos/matomo-org/matomo/issues/886/comments | 5 | 2009-07-28T18:36:12Z | 2014-07-08T10:00:59Z | https://github.com/matomo-org/matomo/issues/886 | 37,350,944 | 886 |
[
"matomo-org",
"matomo"
] | Prior to #828, index.php contained:
```
if(!session_id()) {
session_start();
}
```
However, session_start() was always called because session_id() returns a string; even an empty string (""), would mean the conditional evaluated to true.
This isn't necessarily wrong as it either starts or resumes an existing session. In fact, it masks a problem where MySQL is configured with a low limit on concurrent connections. By calling session_start() in index.php, requests associated with the same session are funneled in serial fashion.
See comments:
- http://ca.php.net/manual/en/function.session-start.php#90968
- http://ca.php.net/manual/en/function.session-start.php#31262
Following #828, the session_start() call was removed. We are starting to see reports of "SQLSTATE User xxxxxx already has more than 'max_user_connections' active connections" appearing in some dashboard widgets.
Proposed patch:
```
Index: index.php
===================================================================
--- index.php (revision 1329)
+++ index.php (working copy)
@@ -37,6 +37,7 @@
session_cache_limiter('nocache');
@date_default_timezone_set(date_default_timezone_get());
require_once PIWIK_INCLUDE_PATH .'/core/Loader.php';
+Zend_Session::start();
if(!defined('PIWIK_ENABLE_ERROR_HANDLER') || PIWIK_ENABLE_ERROR_HANDLER)
{
```
This duplicates the functionality of "session.auto_start=On" (see #881), but is Zend Framework-friendly.
Pros:
- Mitigates the connection limit problem.
- Potentially lowers peak load on the server.
Cons:
- A long-loading widget delays the loading of other widgets. This gives the appearance that the dashboard is taking longer to load.
| Should dispatcher always start/resume session? | https://api.github.com/repos/matomo-org/matomo/issues/885/comments | 3 | 2009-07-28T16:23:27Z | 2014-07-08T10:07:59Z | https://github.com/matomo-org/matomo/issues/885 | 37,350,943 | 885 |
[
"matomo-org",
"matomo"
] | There are a few un-documented helper functions that plugin developers can use. They should appear in the documentation page: http://dev.piwik.org/trac/wiki/Plugins/GlobalFunctions
For example:
- how to write SQL in Tracker code (where Piwik_\* doesn't work)
- expand documentation on the smarty functions
- more..
| Developer doc: update the documentation page: "Helper functions" with all available helper functions and best practises | https://api.github.com/repos/matomo-org/matomo/issues/884/comments | 2 | 2009-07-27T20:55:01Z | 2014-08-03T11:26:00Z | https://github.com/matomo-org/matomo/issues/884 | 37,350,942 | 884 |
[
"matomo-org",
"matomo"
] | The piwik javascript file piwik.js is GPLv3. To record statistics with piwik, you must include it into your website (possibly covered by different licenses).
By including piwik.js into a HTML file, you create a bigger "covered work" => at least parts (at least the JavaScript parts, as they are a kind of "dynamically linked" with the other JavaScript code in the Browser) must be (implicitly) licensed under the GPLv3. Maybe the GPL could cover other parts (eg. images) too, as the GPL is not very precise.
You should create a FAQ entry, describing what license requirements are enforced on a website by including piwik.js and how the GPLv3 should be interpreted.
| piwik.js licensing issues | https://api.github.com/repos/matomo-org/matomo/issues/883/comments | 1 | 2009-07-27T19:54:27Z | 2014-08-03T11:22:13Z | https://github.com/matomo-org/matomo/issues/883 | 37,350,941 | 883 |
[
"matomo-org",
"matomo"
] | I get the following exception when trying to use Piwik_Query() from within my plugin:
```
No entry is registered for key 'db'
#0 C:\\wamp\\www\\piwik\\core\\PluginsFunctions\\Sql.php(24): Zend_Registry::get(\'db\')
#1 C:\\wamp\\www\\piwik\\plugins\\MyPlugin\\MyPlugin.php(136): Piwik_Query(\'INSERT INTO my...\', Array)
#2 [internal function]: Piwik_MyPlugin->myHandler(Object(Piwik_Event_Notification))
#3 C:\\wamp\\www\\piwik\\libs\\Event\\Dispatcher.php(284): call_user_func_array(Array, Array)
#4 C:\\wamp\\www\\piwik\\core\\PluginsManager.php(491): Event_Dispatcher->postNotification(Object(Piwik_Event_Notification), true, false)
#5 C:\\wamp\\www\\piwik\\core\\Tracker\\Action.php(194): Piwik_PostEvent(\'Tracker.Action....\', Object(Piwik_Tracker_Action), Array)
#6 C:\\wamp\\www\\piwik\\core\\Tracker\\Visit.php(142): Piwik_Tracker_Action->record(\'23\', \'16\', 88)
#7 C:\\wamp\\www\\piwik\\core\\Tracker.php(64): Piwik_Tracker_Visit->handle()
#8 C:\\wamp\\www\\piwik\\piwik.php(59): Piwik_Tracker->main()
#9 {main}
```
Here is my hook registration:
```
function getListHooksRegistered()
{
$hooks = array(
'Tracker.Action.record' => 'myHandler',
'Menu.add' => 'addMenu',
);
return $hooks;
}
```
And my handler implementation:
```
public function myHandler($notification)
{
$trackerAction =& $notification->getNotificationObject();
$idAction = $trackerAction->getIdAction();
try
{
Piwik_Query('INSERT INTO my_table (idaction, myvalue) VALUES (?,?);', array($idAction, 0));
}
catch(Exception $e)
{
self::log($e->getMessage());
self::log($e->getTraceAsString());
}
}
```
**--- WORKAROUND ---**
A workaround is available, but this deviates from the published ["Security Checklist"](http://dev.piwik.org/trac/wiki/Plugins/SecurityChecklist) which recommends the use of Piwik_Query().
```
Piwik_Tracker::getDatabase()->query($query, $params);
```
| Piwik_Query() throws exception when used in a Tracker event hook | https://api.github.com/repos/matomo-org/matomo/issues/882/comments | 9 | 2009-07-26T23:16:06Z | 2014-07-08T10:02:23Z | https://github.com/matomo-org/matomo/issues/882 | 37,350,940 | 882 |
[
"matomo-org",
"matomo"
] | I run my server with session.auto_start at on, which causes a problem due to the way the Zend Session Object is done.
I would suggest a htaccess with the following rule:
```php_flag session.auto_start off
```
At any rate, this .htaccess coule eventually be used for url routing purposes, for clean urls.
```
| .htaccess | https://api.github.com/repos/matomo-org/matomo/issues/881/comments | 3 | 2009-07-25T23:31:32Z | 2014-07-08T10:00:59Z | https://github.com/matomo-org/matomo/issues/881 | 37,350,939 | 881 |
[
"matomo-org",
"matomo"
] | Unfortunately I cannot re-produce this myself, and have very little information to go on. I have tested with the same browser version, and a number of other versions, unsuccessfully re-creating the issue.
This only occurs when enabling piwik.js on the site, this is occurring for a number of other people, and is not a single case, I am currently awaiting to be sent the windows event logs.
The issue is described as below from the client:
"She logged in an then did a couple of searches, after about 3-4 minutes the browser completely closed on her without any explanation.
She then visited the site again and logged in but went for a cup of coffee. When she returned the browser had closed again. "
| IE 7, 5730.11 - Crashing with piwik.js | https://api.github.com/repos/matomo-org/matomo/issues/880/comments | 2 | 2009-07-25T20:14:50Z | 2014-07-08T10:00:58Z | https://github.com/matomo-org/matomo/issues/880 | 37,350,938 | 880 |
[
"matomo-org",
"matomo"
] | It is useful for plugins to be notified when a "know visit" has happened and also be able to gather information about that visit.
Currently, we use the {Tracker.Visit.isExcluded} hook to detect this. The drawback of this is that no other information about the visit is known during this event's propagation. The visitorInfo object is essentially empty at this point. This precludes plugins from making use of numerous useful values such as idvisit, idsite, visit_exit_idaction, etc...
I propose dispatching a {Tracker.Visit.knownVisitorInformation} event from within the {Piwik_Tracker_Visit.handleKnownVisit()} function and passing the visitorInfo var in it. This is very similar to how the {Tracker.newVisitorInformation} event is dispatched.
Code to be added to the end of Piwik_Tracker_Visit.handleKnownVisit():
```
Piwik_PostEvent('Tracker.Visit.knownVisitorInformation', $this->visitorInfo);
```
I've implemented it in my hacked Piwik copy and it works great and is sooo useful to some custom plugins I'm building. Simple one-liner change, but good value I think.
Keywords: tracker event
| Need an event to notify that a know visit has happened (Tracker.Visit.knownVisitorInformation) | https://api.github.com/repos/matomo-org/matomo/issues/879/comments | 2 | 2009-07-25T02:43:55Z | 2014-07-08T10:00:58Z | https://github.com/matomo-org/matomo/issues/879 | 37,350,937 | 879 |
[
"matomo-org",
"matomo"
] | There is an error in the German translation file, which causes an error in the upgrade notification message. Attached is a screenshot of the broken upgrade notification and a patch against de.php to fix the problem.
| Upgrade notification broken in German translation | https://api.github.com/repos/matomo-org/matomo/issues/878/comments | 3 | 2009-07-25T02:36:48Z | 2014-07-08T10:00:57Z | https://github.com/matomo-org/matomo/issues/878 | 37,350,936 | 878 |
[
"matomo-org",
"matomo"
] | A problem has been found on this page : http://forum.piwik.org/index.php?showtopic=1261
A non initialized var causes a minor error, it's located in the template file : plugins/CoreHome/templates/piwik_tag.tpl
You can patch the template this way :
Delete the first line :
```
{if $piwikUrl == 'http://piwik.org/demo/' || $debugTrackVisitsInsidePiwikUI}
```
Replace by :
```
{if $piwikUrl == 'http://piwik.org/demo/' || (isset($debugTrackVisitsInsidePiwikUI) && $debugTrackVisitsInsidePiwikUI)}
```
| Sites management, error in the template | https://api.github.com/repos/matomo-org/matomo/issues/877/comments | 5 | 2009-07-24T18:37:55Z | 2014-07-08T10:00:57Z | https://github.com/matomo-org/matomo/issues/877 | 37,350,934 | 877 |
[
"matomo-org",
"matomo"
] | None
| Piwik_Tracker_Visit should not validate $this->request in constructor | https://api.github.com/repos/matomo-org/matomo/issues/876/comments | 2 | 2009-07-23T18:46:58Z | 2014-07-08T10:17:13Z | https://github.com/matomo-org/matomo/issues/876 | 37,350,933 | 876 |
[
"matomo-org",
"matomo"
] | Accessing navigator.javaEnabled in IE 6.0 results in an javascript error
| Javascript error in piwik.js | https://api.github.com/repos/matomo-org/matomo/issues/875/comments | 6 | 2009-07-22T22:20:20Z | 2014-07-08T10:05:26Z | https://github.com/matomo-org/matomo/issues/875 | 37,350,932 | 875 |
[
"matomo-org",
"matomo"
] | "I have a problem that only occurs when the Piwik JS script is on my pages. Every time I load/reload a page I get the following message bx with progress bar:
"Please wait while Windows configures Adobe Shockwave Player"
I allow this to complete but then on the next page (or on refersh) it is back." - Username: Wilbirion
He phrased it well in the forums so decided to quote
| Adobe Shockwave Player Configuration Bug | https://api.github.com/repos/matomo-org/matomo/issues/874/comments | 4 | 2009-07-21T20:49:55Z | 2014-08-03T11:22:13Z | https://github.com/matomo-org/matomo/issues/874 | 37,350,930 | 874 |
[
"matomo-org",
"matomo"
] | Hello Piwik-Crew,
please add support for Playstation 3 User Agents:
http://www.useragentstring.com/pages/Playstation%203/
Greetings!
Keywords: User Agent, UserAgent, Playstation
| Add Playstation 3 User Agent | https://api.github.com/repos/matomo-org/matomo/issues/873/comments | 1 | 2009-07-19T20:52:37Z | 2014-07-08T10:00:57Z | https://github.com/matomo-org/matomo/issues/873 | 37,350,929 | 873 |
[
"matomo-org",
"matomo"
] | Piwik should allow to exclude IP Addresses by subnet
for example:
exclude 212.116.100.0/24 (255.255.255.0)
which means: exclude a hall C Class
or
exclude 194.156.0.0/21 (255.255.248.0)
which means: exclude from host: 194.156.0.1 until host: 194.156.7.254
Keywords: ip addresses subnet classes
| Exclude ip addresses | https://api.github.com/repos/matomo-org/matomo/issues/872/comments | 0 | 2009-07-19T11:10:31Z | 2009-08-14T09:48:19Z | https://github.com/matomo-org/matomo/issues/872 | 37,350,928 | 872 |
[
"matomo-org",
"matomo"
] | The Internet Assigned Numbers Authority (IANA) has reserved the
following three blocks of the IP address space for private internets:
10.0.0.0 - 10.255.255.255 (10/8 prefix)
172.16.0.0 - 172.31.255.255 (172.16/12 prefix)
192.168.0.0 - 192.168.255.255 (192.168/16 prefix)
piwik resolves 192.168.x.x as a USA country ip address.
i didn't check the other classes.
this is a problem for any admin that is working from his LAN. piwik should allow you to exclude ip by subnetting .but this is another request which i'm going to submit.
first it should ignore these addresses since they are not from the internet. and even if they are counted they should not be resolved or should resolved as "YOUR LOCAL ADDRESS"...
Keywords: ip addresses
| bug - piwik resolves private ip. | https://api.github.com/repos/matomo-org/matomo/issues/871/comments | 1 | 2009-07-19T11:03:30Z | 2014-07-08T10:00:56Z | https://github.com/matomo-org/matomo/issues/871 | 37,350,927 | 871 |
[
"matomo-org",
"matomo"
] | With the advent of the new tracking system and the ability to manually fire a goal tracking action within the tracker script, it needs a few tweaks to support it in the UI.
Currently you are forced to set a url no matter what setting up a goal.
It would make sense to have an option now to state that you are using manual goal tracking rather than url goal tracking.
Keywords: goal tracking
| Option To Set "Manual Goal Trigger" For Goals | https://api.github.com/repos/matomo-org/matomo/issues/870/comments | 3 | 2009-07-16T02:37:20Z | 2014-07-08T10:00:56Z | https://github.com/matomo-org/matomo/issues/870 | 37,350,926 | 870 |
[
"matomo-org",
"matomo"
] | I'm experiencing this issue (http://dwairi.wordpress.com/2009/01/15/open-flash-chart-ie-and-ssl) with piwik 0.4.1.
As indicated in the article, this only surfaces if SSL and IE are used.
Firefox, Safari and Opera are fine.
I attached a picture of the incident.
The URL seen in the picture is:
```
index.php?module=VisitsSummary&action=getEvolutionGraph&columns[]=nb_visits&idSite=1&period=day&date=2009-06-15,2009-07-14&viewDataTable=generateDataChartEvolution
```
As suggested in the blog article above, the following statements inserted in apache's config will fix this.
```
BrowserMatch MSIE HAVE_MSIE
Header set Expires "Thu, 01 Jan 1970 01:00:00 GMT" env=HAVE_MSIE
Header set Cache-Control "must-revalidate, cache, public" env=HAVE_MSIE
Header set Pragma "public" env=HAVE_MSIE
```
I couldn't pinpoint the culprit file, so I tried applying this to all (which works).
This shouldn't make a difference, but I have mod_rewrite rules in place to ensure SSL is used.
```
RewriteEngine On
RewriteRule /piwik\.php|js) - [L]
RewriteRule (.*) https://%{SERVER_NAME}$1 [R,L]
```
| Openflashchart Error 2032 with SSL and Internet Explorer | https://api.github.com/repos/matomo-org/matomo/issues/869/comments | 12 | 2009-07-14T20:01:48Z | 2014-07-08T10:01:12Z | https://github.com/matomo-org/matomo/issues/869 | 37,350,925 | 869 |
[
"matomo-org",
"matomo"
] | This ist the message I receive. The update is not taking place.
Fatal error: Cannot redeclare class Piwik_Loader in /homepages/32/d233076604/htdocs/piwik/core/Loader.php on line 13
What do I need to do. Thanks for any help.
| Now I upgraded to 0.4.1 and when I click to update database I get a FATAL ERROR | https://api.github.com/repos/matomo-org/matomo/issues/868/comments | 1 | 2009-07-14T14:18:59Z | 2014-07-08T10:00:56Z | https://github.com/matomo-org/matomo/issues/868 | 37,350,924 | 868 |
[
"matomo-org",
"matomo"
] | I have not changed everything and suddenly this message came up plus the following lines:
#0 Piwik_ErrorHandler(2048, Declaration of Piwik_Log_APICall::log() should be compatible with that of Piwik_Log::log(), /homepages/32/d233076604/htdocs/piwik/modules/Log/APICall.php, 52, Array ()) called at [/homepages/32/d233076604/htdocs/piwik/modules/Piwik.php:873]
#1 Piwik::createLogObject() called at [/homepages/32/d233076604/htdocs/piwik/modules/Piwik.php:873]
#2 Piwik::createLogObject() called at [/homepages/32/d233076604/htdocs/piwik/modules/FrontController.php:311]
#3 Piwik_FrontController->init() called at [/homepages/32/d233076604/htdocs/piwik/index.php:54]
What coud be the problem. Now, I tried an update but no positive results. Please help. Thanks.
| Declaration of Piwik_Log_APICall::log() should be compatible with that of Piwik_Log::log() in '/homepages/32/d233076604/htdocs/piwik/modules/Log/APICall.php' at the line 52 | https://api.github.com/repos/matomo-org/matomo/issues/867/comments | 1 | 2009-07-13T13:55:58Z | 2014-08-03T11:22:13Z | https://github.com/matomo-org/matomo/issues/867 | 37,350,923 | 867 |
[
"matomo-org",
"matomo"
] | Would it be possible to insert hyperlinks in the "page" graphs?
See the attached image for furth explanations.
Keywords: outofscope
| Insert hyperlinks in graphs | https://api.github.com/repos/matomo-org/matomo/issues/866/comments | 2 | 2009-07-12T20:59:26Z | 2014-08-03T11:30:04Z | https://github.com/matomo-org/matomo/issues/866 | 37,350,922 | 866 |
[
"matomo-org",
"matomo"
] | The fix in #614 [991] is kludgey.
Propose moving the change to Installation/Controller.php.
| unix_socket support | https://api.github.com/repos/matomo-org/matomo/issues/865/comments | 8 | 2009-07-12T17:43:23Z | 2014-07-08T10:00:55Z | https://github.com/matomo-org/matomo/issues/865 | 37,350,920 | 865 |
[
"matomo-org",
"matomo"
] | Currently we could use filters in API calls, that are applied to datatables records as documented here: http://dev.piwik.org/trac/wiki/API/Reference
In some cases we would like to filter, sort and limit data that is in subtables as well. Implement filter's that can be applied to subdatatables, i.e.:
filter_subtable_pattern, filter_subtable_column, ...
| Applying filter to the subdatatables. | https://api.github.com/repos/matomo-org/matomo/issues/864/comments | 1 | 2009-07-12T15:01:08Z | 2014-07-08T10:00:55Z | https://github.com/matomo-org/matomo/issues/864 | 37,350,919 | 864 |
[
"matomo-org",
"matomo"
] | Panamanian flag is wrong in Piwik.
[http://en.wikipedia.org/wiki/Flag_of_Panama]
Keywords: panama, panamanian flag
| Panamanian flag is wrong | https://api.github.com/repos/matomo-org/matomo/issues/863/comments | 1 | 2009-07-11T16:43:13Z | 2014-07-08T10:00:55Z | https://github.com/matomo-org/matomo/issues/863 | 37,350,918 | 863 |
[
"matomo-org",
"matomo"
] | See Tracker.php
The code in Piwik_Tracker.connectDatabase checks to see if self::$db is null and if not returns it.
The code in Piwik_Tracker.disconnectDatabase calls self::$db->disconnect();
but does not set the $db to null. The code should read like so:
public static function disconnectDatabase()
{
if(isset(self::$db))
{
self::$db->disconnect();
// XXX must set $db to null or
// Piwik_Tracker.connectDatabase
// returns unconnected db
self::$db = null;
}
}
We are reading from logs so reuse visits.
| Piwik_Tracker.disconnectDatabase should set self::$db to null | https://api.github.com/repos/matomo-org/matomo/issues/862/comments | 1 | 2009-07-10T18:47:20Z | 2014-07-08T10:00:55Z | https://github.com/matomo-org/matomo/issues/862 | 37,350,917 | 862 |
[
"matomo-org",
"matomo"
] | To reproduce, go to the [piwik demo](http://piwik.org/demo/index.php?module=Widgetize&action=index&idSite=1&period=day&date=yesterday), select a widget, and click on export anywhere.
We contacted clearspring a while ago but no answer [see forum post](http://www.clearspring.com/forum/viewtopic.php?f=28&t=1566)
We have a few possible solutions:
1 - remove this feature from Piwik
2 - find another provider like clearspring providing similar API
3 - contact clearpspring and ask them again why this is happening, and if we can somehow secure a user id
4 - ask users to provide their own clearspring user ID in order to use the feature
If we can't do 3- or 4- quickly we should just do 1- and remove clearspring feature from Piwik.
| Clearspring Piwik widgets export fails with message: "Thanks for trying Launchpad On-Page. Unfortunately, your user ID is invalid. Please check it and try again." | https://api.github.com/repos/matomo-org/matomo/issues/861/comments | 2 | 2009-07-10T01:16:40Z | 2014-07-08T10:00:55Z | https://github.com/matomo-org/matomo/issues/861 | 37,350,916 | 861 |
[
"matomo-org",
"matomo"
] | Chinese search engine soso.com
According to wikipedia soso.com is the 83th most visited website in the world. (http://en.wikipedia.org/wiki/Soso.com)
Icon is attached.
Search URI is e.g.:
http://www.soso.com/q?pid=s.idx&w=piwik
Keywords: search engine
| soso.com | https://api.github.com/repos/matomo-org/matomo/issues/860/comments | 2 | 2009-07-09T17:17:47Z | 2014-07-08T10:00:55Z | https://github.com/matomo-org/matomo/issues/860 | 37,350,914 | 860 |
[
"matomo-org",
"matomo"
] | According to Wikipedia one of the biggest search engines in south korea..
search.naver.com
http://search.naver.com/search.naver?sm=tab_hty&where=nexearch&query=piwik&x=0&y=0
Keywords: search engine
| search.naver.com | https://api.github.com/repos/matomo-org/matomo/issues/859/comments | 2 | 2009-07-08T23:20:18Z | 2014-07-08T10:00:55Z | https://github.com/matomo-org/matomo/issues/859 | 37,350,913 | 859 |
[
"matomo-org",
"matomo"
] | After a brand new clean install finished (no error message), if I try to login as the admin (the only user available), I get an error :
- On Safari, it tries to load "http://mywebsite/piwik/index.php?module=CoreHome&action=index&idSite=1&period=day&date=today" and it ends up saying "Too many redirections
- On Firefox, it brings me back to the login page
| Clean install of Top-of-Tree ends up in a redirect loop | https://api.github.com/repos/matomo-org/matomo/issues/858/comments | 10 | 2009-07-08T21:03:41Z | 2014-07-08T10:00:54Z | https://github.com/matomo-org/matomo/issues/858 | 37,350,912 | 858 |
[
"matomo-org",
"matomo"
] | Currently detected:
- "cookie"
- Pdf
- Flash
- Windows Media Player
- Shockwave Director
- Real Player
Add:
- Silverlight
- Google Gears
Remove:
- "cookie"
Notes:
- Adobe AIR (may not be possible to detect/distinguish from Flash)
- QuickTime (removed in 0.2.35)
- Java (removed in 0.4)
See also #852.
| Changes to browser plugin detection in non-IE browsers | https://api.github.com/repos/matomo-org/matomo/issues/857/comments | 5 | 2009-07-08T07:47:19Z | 2014-07-08T10:17:44Z | https://github.com/matomo-org/matomo/issues/857 | 37,350,911 | 857 |
[
"matomo-org",
"matomo"
] | Update 2009-04-03
- http://pear.php.net/package/HTML_Common
- http://pear.php.net/package/HTML_QuickForm
| Update libs/HTML | https://api.github.com/repos/matomo-org/matomo/issues/856/comments | 1 | 2009-07-08T03:36:40Z | 2014-07-08T10:00:54Z | https://github.com/matomo-org/matomo/issues/856 | 37,350,910 | 856 |
[
"matomo-org",
"matomo"
] | Currently you can customize campaign parameters by editing config/config.ini.php and adding the following:
```
; 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
```
New proposal:
- each variable can be an array, so we can define multiple variable names
- because GA defines 4 variable for campaign tracking (see [URL builder](http://www.google.com/support/googleanalytics/bin/answer.py?hl=en&answer=55578)), we would have to define Piwik campaign name, and keyword, by a concatenation of these. For example:
```
# Campaign Name
campaign_var_name[] = piwik_campaign
campaign_var_name[] = "{$utm_campaign} {$utm_source} {$utm_medium}"
# Keyword
campaign_keyword_var_name[] = piwik_kwd
campaign_keyword_var_name[] = utm_term
```
Note: as a more complex alternative, we can also contemplate adding a level in the campaign table, to handle 3 or 4 levels (for example, reusing the existing data table used for page views, that has infinite number of levels.
| Campaign name and keyword variable names should be defined in a list, and should include utm_* by default. | https://api.github.com/repos/matomo-org/matomo/issues/855/comments | 5 | 2009-07-07T20:04:33Z | 2014-07-08T10:14:42Z | https://github.com/matomo-org/matomo/issues/855 | 37,350,909 | 855 |
[
"matomo-org",
"matomo"
] | I'm not quite sure if this is a Bug or if I'm just misinterpreting the statistics.
The visitor count graph of July 6 tells me I had about 264 Visitors. While sum of all visitors per country shows me 26 visitors for this day.. Where is the difference coming from?
| Visitor Count != SUM(Unique visitors per Country) | https://api.github.com/repos/matomo-org/matomo/issues/854/comments | 4 | 2009-07-07T11:23:14Z | 2014-08-03T11:22:13Z | https://github.com/matomo-org/matomo/issues/854 | 37,350,908 | 854 |
[
"matomo-org",
"matomo"
] | My Piwik database is 5.9MB big and I've got an overhead of 1.1MB. How about implementing an "OPTIMIZE" routine in Piwik to avoid getting a huge overhead?
Keywords: outofscope
| Build in "OPTIMIZE" statement? | https://api.github.com/repos/matomo-org/matomo/issues/853/comments | 6 | 2009-07-06T23:46:22Z | 2014-08-03T11:30:04Z | https://github.com/matomo-org/matomo/issues/853 | 37,350,907 | 853 |
[
"matomo-org",
"matomo"
] | Hi there,
One of my visitors called and told me, that he is getting strange messages, when browsing my website. I couldn't make heads or tails of it, so i took a look at it myself.
It seems that the Real-Player triggers the Windows Vista UAC-message. I was not yet able to reproduce the error on my own machine, but it started exactly the moment we started using Piwik.
Disabling the Check for real player would be a fix for me, as I do not really care for this particular plugin.
This is a major annoyance, since he gets the window on every single page-view. I'd give it a priority "major", but then again, who has real player installed and uses vista and IE at the same time ;-)
| Disable ActiveX browser plugins in Internet Explorer | https://api.github.com/repos/matomo-org/matomo/issues/852/comments | 4 | 2009-07-06T21:59:40Z | 2014-07-08T10:17:44Z | https://github.com/matomo-org/matomo/issues/852 | 37,350,906 | 852 |
[
"matomo-org",
"matomo"
] | **Installation** redirects to "undefined". Not sure if it's a regression from the Zend_Session patch, but saw this each time I chose to delete existing tables:
```
127.0.0.1 - - [05/Jul/2009:17:23:30 -0400] "GET /index.php?action=tablesCreation&module=Installation HTTP/1.1" 200 5955 "http://localhost/index.php?action=databaseSetup" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.0.11) Gecko/2009060308 Ubuntu/9.04 (jaunty) Firefox/3.0.11 FirePHP/0.3"
127.0.0.1 - - [05/Jul/2009:17:23:35 -0400] "GET /undefined HTTP/1.1" 404 350 "http://localhost/index.php?action=tablesCreation&module=Installation" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.0.11) Gecko/2009060308 Ubuntu/9.04 (jaunty) Firefox/3.0.11 FirePHP/0.3"
127.0.0.1 - - [05/Jul/2009:17:23:36 -0400] "GET /index.php?action=tablesCreation&module=Installation&deleteTables=1 HTTP/1.1" 200 4853 "http://localhost/index.php?action=tablesCreation&module=Installation" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.0.11) Gecko/2009060308 Ubuntu/9.04 (jaunty) Firefox/3.0.11 FirePHP/0.3"
```
**Unit Tests** all_tests.php fails in tests/core/API/DocumentationGenerator.test.php, but succeeds when test is run by itself. Where is it getting website id 2?
```
Exception: ../tests/core/API/DocumentationGenerator.test.php -> Test_Piwik_API_DocumentationGenerator -> test_callableApiMethods_doNotFail -> Unexpected exception of type [Piwik_Access_NoAccessException] with message [You can't access this resource as it requires a 'view' access for the website id = 2.] in [/home/apang/work/piwik/trunk/core/Access.php line 340]
```
| Installation redirect to undefined; all_tests.php failing | https://api.github.com/repos/matomo-org/matomo/issues/851/comments | 2 | 2009-07-06T05:45:35Z | 2023-09-19T14:23:27Z | https://github.com/matomo-org/matomo/issues/851 | 37,350,904 | 851 |
[
"matomo-org",
"matomo"
] | When you drag a widget to the bottom Chrome 2.0.172.33 freezes. I know that this isn't a stable browser so I'm not certain that this is a bug in Piwik but maybe it is worth the effort to investigate.
| Drag Widget to Bottom Freezes browser | https://api.github.com/repos/matomo-org/matomo/issues/850/comments | 1 | 2009-07-03T17:29:32Z | 2014-08-03T11:22:13Z | https://github.com/matomo-org/matomo/issues/850 | 37,350,903 | 850 |
[
"matomo-org",
"matomo"
] | I found that flag of GEORGIA (this is country not a state of US) is still old. Flag has changed already 6 years since 2003.
| Wrong Flag of Georgia | https://api.github.com/repos/matomo-org/matomo/issues/849/comments | 6 | 2009-07-03T08:08:09Z | 2014-07-08T10:01:13Z | https://github.com/matomo-org/matomo/issues/849 | 37,350,902 | 849 |
[
"matomo-org",
"matomo"
] | None
| Update PclZip to 2.8 | https://api.github.com/repos/matomo-org/matomo/issues/848/comments | 1 | 2009-07-03T03:31:46Z | 2014-07-08T10:00:52Z | https://github.com/matomo-org/matomo/issues/848 | 37,350,901 | 848 |
[
"matomo-org",
"matomo"
] | The case #837 was closed without a solution and there was no feedback after I posted again. I'm also not able to re-open (access denied - this should be fixed, too).
I need to be able to fetch the flash data URL with token_auth or I cannot embed the flash in other applications like the Drupal Piwik Reports. This have worked well in past and is now broken. The Drupal module is in the wild for a year and it would be a very bad news if I need to remove the submodule only because the token_auth is missing.
Please add the token_auth back and allow the authorisation of this JSON calls.
It doesn't help me anything to tell me something about the API if this is not returning the data for the flash widgets.
| flash data cannot fetched with token_auth | https://api.github.com/repos/matomo-org/matomo/issues/847/comments | 5 | 2009-07-02T20:31:47Z | 2014-08-03T11:22:13Z | https://github.com/matomo-org/matomo/issues/847 | 37,350,900 | 847 |
[
"matomo-org",
"matomo"
] | After completing a install of 0.4.1 i got the following error:
Language file not found for the plugin 'ExamplePlugin'.
Backtrace:
#0 /home/content/r/u/n/runtime57/html/piwik/core/PluginsManager.php(179): Piwik_PluginsManager->loadTranslation(Object(Piwik_ExamplePlugin), 'en')
#1 /home/content/r/u/n/runtime57/html/piwik/core/FrontController.php(232): Piwik_PluginsManager->postLoadPlugins()
#2 /home/content/r/u/n/runtime57/html/piwik/index.php(57): Piwik_FrontController->init()
#3 {main}
| Language file not found for the plugin 'ExamplePlugin' | https://api.github.com/repos/matomo-org/matomo/issues/846/comments | 1 | 2009-07-02T05:06:24Z | 2014-07-08T10:00:52Z | https://github.com/matomo-org/matomo/issues/846 | 37,350,899 | 846 |
[
"matomo-org",
"matomo"
] | Under PHP 5.3 the ereg() method has been deprecated, and a number of other features are changed.
The attached diff allows Piwik to install and run under 5.3. It primarily fixes the deprecated issues in the code, BUT NOT in the Unit Tests: these currently generate a range of warnings about depracation.
Therefore this diff is a starting point, and SHOULD BE CHECKED since in some places it is not immediately obvious that the ereg -> preg replacement is trivial.
In theory, the diff is backwards-compatible, but I've only tested under 5.3, so am unsure about this.
Note too that I've not changed the ereg calls in
libs/PclZip/pclzip.lib.php
libs/UserAgentParser/UserAgentParser.php
Since these are libraries, I have left them, and they don't appear to cause a problem on my instance yet (which I've only just installed and started playing with).
| PHP 5.3 generates slew of errors | https://api.github.com/repos/matomo-org/matomo/issues/845/comments | 8 | 2009-07-01T13:05:14Z | 2014-07-08T10:00:53Z | https://github.com/matomo-org/matomo/issues/845 | 37,350,898 | 845 |
[
"matomo-org",
"matomo"
] | Beside the notices that I found there is one major problem executing piwik. Calling the webinterface brings up the folling in text/plain:
The magic method __isset() must have public visibility and cannot be static
in '/var/www/htdocs/piwik.c0demonkey.com/html/libs/Zend/Config.php' at the line 184
#0 Piwik_ErrorHandler(2, The magic method __isset() must have public visibility and cannot be static, /var/www/htdocs/piwik.c0demonkey.com/html/libs/Zend/Config.php, 184, Array ([=> Piwik,[classPath](class]) => Piwik,[=> 0,[path](i]) => /var/www/htdocs/piwik.c0demonkey.com/html/core/Piwik.php)) called at [/var/www/htdocs/piwik.c0demonkey.com/html/libs/Zend/Config/Ini.php:27]
#1 require_once() called at [/var/www/htdocs/piwik.c0demonkey.com/html/libs/Zend/Config/Ini.php:27]
#2 require_once(/var/www/htdocs/piwik.c0demonkey.com/html/libs/Zend/Config/Ini.php) called at [/var/www/htdocs/piwik.c0demonkey.com/html/core/Config.php:12]
#3 require_once(/var/www/htdocs/piwik.c0demonkey.com/html/core/Config.php) called at [/var/www/htdocs/piwik.c0demonkey.com/html/core/Piwik.php:12]
#4 require_once(/var/www/htdocs/piwik.c0demonkey.com/html/core/Piwik.php) called at [/var/www/htdocs/piwik.c0demonkey.com/html/core/Loader.php:45]
#5 Piwik_Loader::autoload(Piwik)
#6 spl_autoload_call(Piwik) called at [/var/www/htdocs/piwik.c0demonkey.com/html/core/FrontController.php:186]
#7 Piwik_FrontController->init() called at [/var/www/htdocs/piwik.c0demonkey.com/html/index.php:57]
| PHP 5.3 breaks Piwik | https://api.github.com/repos/matomo-org/matomo/issues/844/comments | 2 | 2009-06-30T23:17:03Z | 2014-07-08T10:00:51Z | https://github.com/matomo-org/matomo/issues/844 | 37,350,897 | 844 |
[
"matomo-org",
"matomo"
] | I've just compiled PHP 5.3 and took a closer look at my log. I found the following notices/warnings:
[23:13:59](30-Jun-2009) PHP Warning: syntax error, unexpected $end, expecting TC_DOLLAR_CURLY or TC_QUOTED_STRING or '"' in /var/www/htdocs/piwik.c0demonkey.com/html/config/global.ini.php on line 145
in /var/www/htdocs/piwik.c0demonkey.com/html/core/Tracker/Config.php on line 62
[23:13:59](30-Jun-2009) PHP Notice: Undefined index: record_statistics in /var/www/htdocs/piwik.c0demonkey.com/html/core/Tracker.php on line 304
[23:13:59](30-Jun-2009) PHP Notice: Undefined index: download_url_var_name in /var/www/htdocs/piwik.c0demonkey.com/html/core/Tracker.php on line 265
[23:13:59](30-Jun-2009) PHP Notice: Undefined index: outlink_url_var_name in /var/www/htdocs/piwik.c0demonkey.com/html/core/Tracker.php on line 280
[23:13:59](30-Jun-2009) PHP Notice: Undefined index: download_url_var_name in /var/www/htdocs/piwik.c0demonkey.com/html/core/Tracker.php on line 265
[23:13:59](30-Jun-2009) PHP Notice: Undefined index: outlink_url_var_name in /var/www/htdocs/piwik.c0demonkey.com/html/core/Tracker.php on line 280
As they should be easy to fix I selected the Milestone Piwik 0.4.2
Keywords: php notices
| PHP 5.3 is throwing some notices | https://api.github.com/repos/matomo-org/matomo/issues/843/comments | 4 | 2009-06-30T23:15:43Z | 2014-07-08T10:00:51Z | https://github.com/matomo-org/matomo/issues/843 | 37,350,896 | 843 |
[
"matomo-org",
"matomo"
] | Currently we only display unique visitors per day. We could run the query to also process this number across all logs for weeks and month. This might interfere with log purging, eg. if we purge logs that are older than 2 weeks, we are not able to process uniques for the month anymore.
| Display unique visitors per week and month | https://api.github.com/repos/matomo-org/matomo/issues/842/comments | 5 | 2009-06-30T20:29:41Z | 2014-07-08T10:16:37Z | https://github.com/matomo-org/matomo/issues/842 | 37,350,895 | 842 |
[
"matomo-org",
"matomo"
] | It seems, that piwik has some troubles with php version 5.2.10.
We updated today 2 of our servers from php 5.2.0 to 5.2.10.
Now when i want to login into my piwik installation (0.4.1), these messages are visible (and nothing more!) - real website address is changed:
Declaration of Piwik_Event_Notification::increaseNotificationCount() should be compatible with that of Event_Notification::increaseNotificationCount()
in '/var/www/web65/html/cms/piwik/core/PluginsManager.php' at the line 509
#0 Piwik_ErrorHandler(2048, Declaration of Piwik_Event_Notification::increaseNotificationCount() should be compatible with that of Event_Notification::increaseNotificationCount(), /var/www/web65/html/cms/piwik/core/PluginsManager.php, 509, Array ([=> Array ( _RECURSION_,[_ENV](GLOBALS]) => Array ([=> /var/www/web65/html/cms,[GATEWAY_INTERFACE](DOCUMENT_ROOT]) => CGI/1.1,[=> text/html,application/xhtml+xml,application/xml;q=0.9,_/_;q=0.8,[HTTP_ACCEPT_CHARSET](HTTP_ACCEPT]) => ISO-8859-1,utf-8;q=0.7,*;q=0.7,[=> gzip,deflate,[HTTP_ACCEPT_LANGUAGE](HTTP_ACCEPT_ENCODING]) => de-de,de;q=0.8,en-us;q=0.5,en;q=0.3,[=> keep-alive,[HTTP_COOKIE](HTTP_CONNECTION]) => piwik_visitor1=1%3DYzI2YThiN2FhZmRhYmIyNzZmMWVlOGFmZWUyZTRlYzg%3D%3A2%3DMTI0NTU4NjEyNg%3D%3D%3A3%3DMTI0NTU4NjEyNg%3D%3D%3A4%3DNTgyNg%3D%3D%3A5%3DNQ%3D%3D%3A11%3DMQ%3D%3D%3A8%3DMw%3D%3D%3A9%3Dc3ViczAyLmNsaWNrdGFsZS5uZXQ%3D%3A10%3D%3A6%3DNTU1OQ%3D%3D%3A7%3DMTI0NTA3NTIxOA%3D%3D; WRUID=0; d0697c80a0e0843aad9a8ea0b7596dcd=39847b68c7a8ccd3162017261136b073; 6be9e2e64d2b570a3b98d7cef2a27451=82f671dd25104378ee495381b976d4d2,[=> www.mywebsite.com,[HTTP_KEEP_ALIVE](HTTP_HOST]) => 300,[=> Mozilla/5.0 (Windows; U; Windows NT 6.1; de; rv:1.9.1) Gecko/20090624 Firefox/3.5 (.NET CLR 3.5.30729),[PATH](HTTP_USER_AGENT]) => /bin:/usr/bin,[=> /etc/apache2/confixx_phpini/web65,[QUERY_STRING](PHPRC]) => ,[=> 200,[REMOTE_ADDR](REDIRECT_STATUS]) => 188.23.47.33,[=> 52988,[REQUEST_METHOD](REMOTE_PORT]) => GET,[=> /piwik/,[SCRIPT_FILENAME](REQUEST_URI]) => /var/www/web65/html/cms/piwik/index.php,[=> /piwik/index.php,[SERVER_ADDR](SCRIPT_NAME]) => 82.96.90.172,[=> [no address given](SERVER_ADMIN]),[=> www.mywebsite.com,[SERVER_PORT](SERVER_NAME]) => 80,[=> HTTP/1.1,[SERVER_SIGNATURE](SERVER_PROTOCOL]) =>
Apache Server at www.mywebsite.com Port 80
,[=> Apache),[HTTP_ENV_VARS](SERVER_SOFTWARE]) => Array ([=> /var/www/web65/html/cms,[GATEWAY_INTERFACE](DOCUMENT_ROOT]) => CGI/1.1,[=> text/html,application/xhtml+xml,application/xml;q=0.9,_/_;q=0.8,[HTTP_ACCEPT_CHARSET](HTTP_ACCEPT]) => ISO-8859-1,utf-8;q=0.7,*;q=0.7,[=> gzip,deflate,[HTTP_ACCEPT_LANGUAGE](HTTP_ACCEPT_ENCODING]) => de-de,de;q=0.8,en-us;q=0.5,en;q=0.3,[=> keep-alive,[HTTP_COOKIE](HTTP_CONNECTION]) => piwik_visitor1=1%3DYzI2YThiN2FhZmRhYmIyNzZmMWVlOGFmZWUyZTRlYzg%3D%3A2%3DMTI0NTU4NjEyNg%3D%3D%3A3%3DMTI0NTU4NjEyNg%3D%3D%3A4%3DNTgyNg%3D%3D%3A5%3DNQ%3D%3D%3A11%3DMQ%3D%3D%3A8%3DMw%3D%3D%3A9%3Dc3ViczAyLmNsaWNrdGFsZS5uZXQ%3D%3A10%3D%3A6%3DNTU1OQ%3D%3D%3A7%3DMTI0NTA3NTIxOA%3D%3D; WRUID=0; d0697c80a0e0843aad9a8ea0b7596dcd=39847b68c7a8ccd3162017261136b073; 6be9e2e64d2b570a3b98d7cef2a27451=82f671dd25104378ee495381b976d4d2,[=> www.mywebsite.com,[HTTP_KEEP_ALIVE](HTTP_HOST]) => 300,[=> Mozilla/5.0 (Windows; U; Windows NT 6.1; de; rv:1.9.1) Gecko/20090624 Firefox/3.5 (.NET CLR 3.5.30729),[PATH](HTTP_USER_AGENT]) => /bin:/usr/bin,[=> /etc/apache2/confixx_phpini/web65,[QUERY_STRING](PHPRC]) => ,[=> 200,[REMOTE_ADDR](REDIRECT_STATUS]) => 188.23.47.33,[=> 52988,[REQUEST_METHOD](REMOTE_PORT]) => GET,[=> /piwik/,[SCRIPT_FILENAME](REQUEST_URI]) => /var/www/web65/html/cms/piwik/index.php,[=> /piwik/index.php,[SERVER_ADDR](SCRIPT_NAME]) => 82.96.90.172,[=> [no address given](SERVER_ADMIN]),[=> www.mywebsite.com,[SERVER_PORT](SERVER_NAME]) => 80,[=> HTTP/1.1,[SERVER_SIGNATURE](SERVER_PROTOCOL]) =>
Apache Server at www.mywebsite.com Port 80
,[=> Apache),[_POST](SERVER_SOFTWARE]) => Array (),[=> Array (),[_GET](HTTP_POST_VARS]) => Array (),[=> Array (),[_COOKIE](HTTP_GET_VARS]) => Array ([=> 1=YzI2YThiN2FhZmRhYmIyNzZmMWVlOGFmZWUyZTRlYzg=:2=MTI0NTU4NjEyNg==:3=MTI0NTU4NjEyNg==:4=NTgyNg==:5=NQ==:11=MQ==:8=Mw==:9=c3ViczAyLmNsaWNrdGFsZS5uZXQ=:10=:6=NTU1OQ==:7=MTI0NTA3NTIxOA==,[WRUID](piwik_visitor1]) => 0,[=> 39847b68c7a8ccd3162017261136b073,[6be9e2e64d2b570a3b98d7cef2a27451](d0697c80a0e0843aad9a8ea0b7596dcd]) => 82f671dd25104378ee495381b976d4d2),[=> Array ([piwik_visitor1](HTTP_COOKIE_VARS]) => 1=YzI2YThiN2FhZmRhYmIyNzZmMWVlOGFmZWUyZTRlYzg=:2=MTI0NTU4NjEyNg==:3=MTI0NTU4NjEyNg==:4=NTgyNg==:5=NQ==:11=MQ==:8=Mw==:9=c3ViczAyLmNsaWNrdGFsZS5uZXQ=:10=:6=NTU1OQ==:7=MTI0NTA3NTIxOA==,[=> 0,[d0697c80a0e0843aad9a8ea0b7596dcd](WRUID]) => 39847b68c7a8ccd3162017261136b073,[=> 82f671dd25104378ee495381b976d4d2),[_SERVER](6be9e2e64d2b570a3b98d7cef2a27451]) => Array ([=> /var/www/web65/html/cms,[GATEWAY_INTERFACE](DOCUMENT_ROOT]) => CGI/1.1,[=> text/html,application/xhtml+xml,application/xml;q=0.9,_/_;q=0.8,[HTTP_ACCEPT_CHARSET](HTTP_ACCEPT]) => ISO-8859-1,utf-8;q=0.7,*;q=0.7,[=> gzip,deflate,[HTTP_ACCEPT_LANGUAGE](HTTP_ACCEPT_ENCODING]) => de-de,de;q=0.8,en-us;q=0.5,en;q=0.3,[=> keep-alive,[HTTP_COOKIE](HTTP_CONNECTION]) => piwik_visitor1=1%3DYzI2YThiN2FhZmRhYmIyNzZmMWVlOGFmZWUyZTRlYzg%3D%3A2%3DMTI0NTU4NjEyNg%3D%3D%3A3%3DMTI0NTU4NjEyNg%3D%3D%3A4%3DNTgyNg%3D%3D%3A5%3DNQ%3D%3D%3A11%3DMQ%3D%3D%3A8%3DMw%3D%3D%3A9%3Dc3ViczAyLmNsaWNrdGFsZS5uZXQ%3D%3A10%3D%3A6%3DNTU1OQ%3D%3D%3A7%3DMTI0NTA3NTIxOA%3D%3D; WRUID=0; d0697c80a0e0843aad9a8ea0b7596dcd=39847b68c7a8ccd3162017261136b073; 6be9e2e64d2b570a3b98d7cef2a27451=82f671dd25104378ee495381b976d4d2,[=> www.mywebsite.com,[HTTP_KEEP_ALIVE](HTTP_HOST]) => 300,[=> Mozilla/5.0 (Windows; U; Windows NT 6.1; de; rv:1.9.1) Gecko/20090624 Firefox/3.5 (.NET CLR 3.5.30729),[PATH](HTTP_USER_AGENT]) => /bin:/usr/bin,[=> /etc/apache2/confixx_phpini/web65,[QUERY_STRING](PHPRC]) => ,[=> 200,[REMOTE_ADDR](REDIRECT_STATUS]) => 188.23.47.33,[=> 52988,[REQUEST_METHOD](REMOTE_PORT]) => GET,[=> /piwik/,[SCRIPT_FILENAME](REQUEST_URI]) => /var/www/web65/html/cms/piwik/index.php,[=> /piwik/index.php,[SERVER_ADDR](SCRIPT_NAME]) => 82.96.90.172,[=> [no address given](SERVER_ADMIN]),[=> www.mywebsite.com,[SERVER_PORT](SERVER_NAME]) => 80,[=> HTTP/1.1,[SERVER_SIGNATURE](SERVER_PROTOCOL]) =>
Apache Server at www.mywebsite.com Port 80
,[=> Apache,[PHP_SELF](SERVER_SOFTWARE]) => /piwik/index.php,[=> 1246384592,[argv](REQUEST_TIME]) => Array (),[=> 0),[HTTP_SERVER_VARS](argc]) => Array ([=> /var/www/web65/html/cms,[GATEWAY_INTERFACE](DOCUMENT_ROOT]) => CGI/1.1,[=> text/html,application/xhtml+xml,application/xml;q=0.9,_/_;q=0.8,[HTTP_ACCEPT_CHARSET](HTTP_ACCEPT]) => ISO-8859-1,utf-8;q=0.7,*;q=0.7,[=> gzip,deflate,[HTTP_ACCEPT_LANGUAGE](HTTP_ACCEPT_ENCODING]) => de-de,de;q=0.8,en-us;q=0.5,en;q=0.3,[=> keep-alive,[HTTP_COOKIE](HTTP_CONNECTION]) => piwik_visitor1=1%3DYzI2YThiN2FhZmRhYmIyNzZmMWVlOGFmZWUyZTRlYzg%3D%3A2%3DMTI0NTU4NjEyNg%3D%3D%3A3%3DMTI0NTU4NjEyNg%3D%3D%3A4%3DNTgyNg%3D%3D%3A5%3DNQ%3D%3D%3A11%3DMQ%3D%3D%3A8%3DMw%3D%3D%3A9%3Dc3ViczAyLmNsaWNrdGFsZS5uZXQ%3D%3A10%3D%3A6%3DNTU1OQ%3D%3D%3A7%3DMTI0NTA3NTIxOA%3D%3D; WRUID=0; d0697c80a0e0843aad9a8ea0b7596dcd=39847b68c7a8ccd3162017261136b073; 6be9e2e64d2b570a3b98d7cef2a27451=82f671dd25104378ee495381b976d4d2,[=> www.mywebsite.com,[HTTP_KEEP_ALIVE](HTTP_HOST]) => 300,[=> Mozilla/5.0 (Windows; U; Windows NT 6.1; de; rv:1.9.1) Gecko/20090624 Firefox/3.5 (.NET CLR 3.5.30729),[PATH](HTTP_USER_AGENT]) => /bin:/usr/bin,[=> /etc/apache2/confixx_phpini/web65,[QUERY_STRING](PHPRC]) => ,[=> 200,[REMOTE_ADDR](REDIRECT_STATUS]) => 188.23.47.33,[=> 52988,[REQUEST_METHOD](REMOTE_PORT]) => GET,[=> /piwik/,[SCRIPT_FILENAME](REQUEST_URI]) => /var/www/web65/html/cms/piwik/index.php,[=> /piwik/index.php,[SERVER_ADDR](SCRIPT_NAME]) => 82.96.90.172,[=> [no address given](SERVER_ADMIN]),[=> www.mywebsite.com,[SERVER_PORT](SERVER_NAME]) => 80,[=> HTTP/1.1,[SERVER_SIGNATURE](SERVER_PROTOCOL]) =>
Apache Server at www.mywebsite.com Port 80
,[=> Apache,[PHP_SELF](SERVER_SOFTWARE]) => /piwik/index.php,[=> 1246384592,[argv](REQUEST_TIME]) => Array (),[=> 0),[_FILES](argc]) => Array (),[=> Array (),[_REQUEST](HTTP_POST_FILES]) => Array ([=> 1=YzI2YThiN2FhZmRhYmIyNzZmMWVlOGFmZWUyZTRlYzg=:2=MTI0NTU4NjEyNg==:3=MTI0NTU4NjEyNg==:4=NTgyNg==:5=NQ==:11=MQ==:8=Mw==:9=c3ViczAyLmNsaWNrdGFsZS5uZXQ=:10=:6=NTU1OQ==:7=MTI0NTA3NTIxOA==,[WRUID](piwik_visitor1]) => 0,[=> 39847b68c7a8ccd3162017261136b073,[6be9e2e64d2b570a3b98d7cef2a27451](d0697c80a0e0843aad9a8ea0b7596dcd]) => 82f671dd25104378ee495381b976d4d2),[=> 5.1.3,[piwik_currentPHPVersion](piwik_minimumPHPVersion]) => 5.2.10,[=> ,[HTTP_SESSION_VARS](piwik_zend_compatibility_mode]) => Array (),[=> Array (),[_Event_Dispatcher](_SESSION]) => Array ([=> Event_Notification))) called at [/var/www/web65/html/cms/piwik/core/PluginsManager.php:509](NotificationClass])
#1 require_once(/var/www/web65/html/cms/piwik/core/PluginsManager.php) called at [/var/www/web65/html/cms/piwik/core/FrontController.php:24]
#2 require_once(/var/www/web65/html/cms/piwik/core/FrontController.php) called at [/var/www/web65/html/cms/piwik/index.php:48]
Does someone know more about this - or can help?
Keywords: php, version, 5.2.0, 5.2.10,compatible
| Piwik not compatible w php 5.2.10? | https://api.github.com/repos/matomo-org/matomo/issues/841/comments | 6 | 2009-06-30T20:07:42Z | 2014-07-08T10:00:51Z | https://github.com/matomo-org/matomo/issues/841 | 37,350,894 | 841 |
[
"matomo-org",
"matomo"
] | Hi,
I am new to piwik - first of all, great tool. I would like to see, if I can help you ;)
When I add the live! widget, I have two buttons at the button. When I press the "play"-Button, the websites duplicates and stops working. Please see attached screenshot for more informations.
Thanks,
Michael
| Live Widget duplicates website | https://api.github.com/repos/matomo-org/matomo/issues/840/comments | 2 | 2009-06-30T16:22:49Z | 2014-07-08T10:16:41Z | https://github.com/matomo-org/matomo/issues/840 | 37,350,892 | 840 |
[
"matomo-org",
"matomo"
] | maze reports on the [forum](http://forum.piwik.org/index.php?showtopic=1142):
```
Open Flash Chart
JSON Parse Error [Bad Object]
Error at character 10209, line 255:
252: "grid-colour": "#E0E1E4",253: "min": 0,254: "max": 2.0e+5,
```
While OFC can't handle the e-notation, we should be sending an int instead of a float.
| JSON Parse Error | https://api.github.com/repos/matomo-org/matomo/issues/839/comments | 1 | 2009-06-29T06:40:05Z | 2014-07-08T10:04:45Z | https://github.com/matomo-org/matomo/issues/839 | 37,350,891 | 839 |
[
"matomo-org",
"matomo"
] | **LiveOverView Plugin**
```
* When installed, the plugin will add 4 widgets to piwik.
```
1. Overview: Visits over xx minutes
Shows all Visitors of the given value of minutes. So you can see who is on your page at the last f.e. 30 minutes like "Who is online"
2. Overview: Visits over xx Days
Shows all Visitors of the last days with pageimpression when you want to configure a longer/shorter timelime
3. Overview: Visits over xx Month
Overview of the visitors and Pageimpressions in the last months
4. First level of IP Tracking
Here you can see the last 100 Visitors. A link of the page impressions shows you the visited pages by this ip. So you can see where the user/bot crawl your site.
**How to install?**
```
* Download Piwik LiveOverView Plugin from http://www.easytraxx.de/
* Unzip the plugin and copy the extracted directory "LiveOverView" in the directory piwik/plugins/
* Enable LiveOverView plugin in Piwik. Go to Piwik > Settings > Plugins > LiveOverView, click Enable
```
**Requirements**
You need at least Piwik 0.2.33 to run the GeoIp plugin.
Authors
```
* Tom Zeithaml
```
| LiveOverView Plugin | https://api.github.com/repos/matomo-org/matomo/issues/838/comments | 14 | 2009-06-28T22:38:00Z | 2014-07-08T10:16:41Z | https://github.com/matomo-org/matomo/issues/838 | 37,350,890 | 838 |
[
"matomo-org",
"matomo"
] | If I call the flash applets with token_auth=anonymous they are shown nevertheless anonymous do not have view permissions.
If I do the same with JSON api call access is blocked.
Repro:
1. Log into Piwik website (now you are authenticated with your "adminstrator")
2. Request JSON data with token_auth=anonymous
3. You receive access denied to site 1
4. Request flash widget with token_auth=anonymous
5. Widget is shown, but shouldn't.
Additional to this it would be great if the Flash applet wouldn't return only the below if access has been denied. It's not very easy for users to understand what happened here.
```
Open Flash Chart
JSON Parse Error [Syntax Error]
Error at character 0, line 1:
0: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1
```
| token_auth authentication bypass | https://api.github.com/repos/matomo-org/matomo/issues/837/comments | 3 | 2009-06-28T22:13:03Z | 2014-08-03T11:22:12Z | https://github.com/matomo-org/matomo/issues/837 | 37,350,889 | 837 |
[
"matomo-org",
"matomo"
] | I'm not sure if the German translators have read what they have written there, but they should read all again...
For e.g. the doc link to manual update page (sorry I cannot remember this word - I have never heard it before.. Something that should be "Dokumentation", but was "Dokumentueration" oder something like this.
For "Sites" we should write "Websites" not "Webseiten".
And sometimes using "der, die, das" would also be great and make sentences more smooth.
There are much more bugs, but I cannot remember them all...
| German translation bugs | https://api.github.com/repos/matomo-org/matomo/issues/836/comments | 19 | 2009-06-28T22:02:16Z | 2014-08-03T11:22:12Z | https://github.com/matomo-org/matomo/issues/836 | 37,350,887 | 836 |
[
"matomo-org",
"matomo"
] | I have integrated the flash widgets into Drupal reports pages, but I'm not able to show them translated. Please provide a parameter for the API calls that give me the charts back in German or other languages. Something like "language" would be great with ISO values like "de", "fr", etc.
The only string I can get the hands around seems to be "loading", but this doesn't help much if the countries or the word "Others" is shown around a pie charts in English...
| Provide language param for widgets calls to select the language to show reports | https://api.github.com/repos/matomo-org/matomo/issues/835/comments | 1 | 2009-06-28T21:54:35Z | 2014-07-08T10:00:49Z | https://github.com/matomo-org/matomo/issues/835 | 37,350,886 | 835 |
[
"matomo-org",
"matomo"
] | Just got an entry in my log from a setooz.com crawler robot. This is a search engine not yet listed in SearchEngines.php.
There are at least 13 URLs to add:
bg.setooz.com
el.setooz.com
et.setooz.com
lv.setooz.com
lt.setooz.com
hu.setooz.com
no.setooz.com
pl.setooz.com
sk.setooz.com
fi.setooz.com
sv.setooz.com
tr.setooz.com
uk.setooz.com
According to the website, there will be 10 more coming in future.
```
// Setooz
"bg.setooz.com" => array("Setooz", "query"),
"el.setooz.com" => array("Setooz", "query"),
"et.setooz.com" => array("Setooz", "query"),
"lv.setooz.com" => array("Setooz", "query"),
"lt.setooz.com" => array("Setooz", "query"),
"hu.setooz.com" => array("Setooz", "query"),
"no.setooz.com" => array("Setooz", "query"),
"pl.setooz.com" => array("Setooz", "query"),
"sk.setooz.com" => array("Setooz", "query"),
"fi.setooz.com" => array("Setooz", "query"),
"sv.setooz.com" => array("Setooz", "query"),
"tr.setooz.com" => array("Setooz", "query"),
"uk.setooz.com" => array("Setooz", "query"),
```
Keywords: search engine needinfo
| setooz.com | https://api.github.com/repos/matomo-org/matomo/issues/834/comments | 3 | 2009-06-28T17:20:25Z | 2014-07-08T10:00:55Z | https://github.com/matomo-org/matomo/issues/834 | 37,350,885 | 834 |
[
"matomo-org",
"matomo"
] | logger_file_path, compile_dir, and cache_dir are assumed to be paths relative to the Piwik document root (ie PIWIK_INCLUDE_PATH). In 0.4, the relative path requirement was made explicit since earlier versions of Piwik allowed users to use an absolute path for compile_dir and cache_dir, but not logger_file_path. (inconsistency)
This change will permit the user to specify an absolute path (overriding the settings in global.ini.php); basically, we won't prefix with PIWIK_INCLUDE_PATH when an absolute path is specified.
| Allow absolute path when relocating tmp folder outside Piwik document root | https://api.github.com/repos/matomo-org/matomo/issues/833/comments | 1 | 2009-06-28T16:37:34Z | 2014-07-08T10:00:48Z | https://github.com/matomo-org/matomo/issues/833 | 37,350,884 | 833 |
[
"matomo-org",
"matomo"
] | After the update to 0.4.1 (from 0.4) i get the following error if i try to go to my piwik homepage:
the $compile_dir '/var/www/web151/html/_statistik.trumpkin.de//var/www/web151/phptmp/templates_c' does not exist, or is not a directory.
Backtrace:
#0 /var/www/web151/html/_statistik.trumpkin.de/libs/Smarty/internals/core.write_compiled_resource.php(20): Piwik_Smarty->trigger_error('the $compile_di...', 256)
#1 /var/www/web151/html/_statistik.trumpkin.de/libs/Smarty/Smarty.class.php(1451): smarty_core_write_compiled_resource(Array, Object(Piwik_Smarty))
#2 /var/www/web151/html/_statistik.trumpkin.de/libs/Smarty/Smarty.class.php(1281): Smarty->_compile_resource('CoreUpdater/tem...', '/var/www/web151...')
#3 /var/www/web151/html/_statistik.trumpkin.de/core/View.php(127): Smarty->fetch('CoreUpdater/tem...')
#4 /var/www/web151/html/_statistik.trumpkin.de/plugins/CoreUpdater/Controller.php(174): Piwik_View->render()
#5 /var/www/web151/html/_statistik.trumpkin.de/plugins/CoreUpdater/Controller.php(141): Piwik_CoreUpdater_Controller->doWelcomeUpdates(Array)
#6 /var/www/web151/html/_statistik.trumpkin.de/core/Piwik.php(924): Piwik_CoreUpdater_Controller->runUpdaterAndExit(Object(Piwik_Updater), Array)
#7 /var/www/web151/html/_statistik.trumpkin.de/core/FrontController.php(211): Piwik::displayScreenForCoreAndPluginsUpdatesIfNecessary()
#8 /var/www/web151/html/_statistik.trumpkin.de/index.php(57): Piwik_FrontController->init()
#9 {main}
Ciao!
Stefan
| $compile_dir error after update | https://api.github.com/repos/matomo-org/matomo/issues/832/comments | 4 | 2009-06-28T12:36:26Z | 2014-08-03T11:22:12Z | https://github.com/matomo-org/matomo/issues/832 | 37,350,883 | 832 |
[
"matomo-org",
"matomo"
] | On my Gentoo-System i've ran into a problem with [archive.sh](source:tags/0.4.1/misc/cron/archive.sh) as there is no binary named "php5" available.
Attached you can find a patch for this issue. The new patch searches for a binary named "php". If there is no "php5" and no "php" available, then it fails with a message.
Keywords: Archiving
| Patching archive.sh for other names of php-binaries than "php5" | https://api.github.com/repos/matomo-org/matomo/issues/831/comments | 7 | 2009-06-26T13:26:09Z | 2014-07-08T10:00:48Z | https://github.com/matomo-org/matomo/issues/831 | 37,350,882 | 831 |
[
"matomo-org",
"matomo"
] | When I click on the website selector, the list opens but there is no background, so the text mangles with the text "Piwik 0.4.1 is a collaborative project...", s. screenshot
The list is shown below all widgets, too. Therefore, I cannot select those domains.
| Website selector is shown below other elements | https://api.github.com/repos/matomo-org/matomo/issues/830/comments | 15 | 2009-06-26T10:59:13Z | 2014-07-08T10:00:48Z | https://github.com/matomo-org/matomo/issues/830 | 37,350,881 | 830 |
[
"matomo-org",
"matomo"
] | archive.sh is normally run via cron so the output is sent by email. These normal status messages are not very useful IMHO but get annoying when received every day.
This patch prevents sending out mails:
--- archive.sh.old 2009-06-26 09:55:24.000000000 +0200
+++ archive.sh 2009-06-26 09:55:40.000000000 +0200
@@ -33,6 +33,5 @@
for period in day week year; do
CMD="$PHP_BIN $PIWIK_PATH -- module=API&method=VisitsSummary.getVisits&idSite=all&period=$period&date=last52&format=xml&token_auth=$TOKEN_AUTH";
- $CMD
- echo ""
- $CMD > /dev/null
done
| misc/cron/archive.sh shouldn´t cause mails to be sent out | https://api.github.com/repos/matomo-org/matomo/issues/829/comments | 3 | 2009-06-26T10:02:19Z | 2014-07-08T10:00:47Z | https://github.com/matomo-org/matomo/issues/829 | 37,350,880 | 829 |
[
"matomo-org",
"matomo"
] | I just tried to use Zend's session namespaces in a plugin, and failed. As it seems, the usage of session_start and of $_SESSION in Piwik prevents plugins from using this.
The attached patch should apply cleanly against 0.4.1, I replaced every occurance of $_SESSION with a new Zend session namespace named after the core component/plugin.
I tested the Installer plugin, should work fine.
Keywords: session handling zend
| Piwik should use Zend's session handling | https://api.github.com/repos/matomo-org/matomo/issues/828/comments | 13 | 2009-06-25T16:55:19Z | 2014-07-08T10:00:59Z | https://github.com/matomo-org/matomo/issues/828 | 37,350,878 | 828 |
[
"matomo-org",
"matomo"
] | If an entry in SearchEngines.php has multiple keyword parameters, this can be done by putting them into an array. But the path to the search engines result page only allows one uri what could lead to search engine results without any hits.
Proposal:
Allow an array as third parameter.
Example:
'www.allesklar.de' => array('Allesklar', array('words', 'cat_path'), array('s.php?words={k}', 'l.php?cat_path={k}'), 'utf-8'),
One other suggestion for SearchEngine.php
It might bring a slight performange increase when replacing all double quotes with single quotes (http://www.php.net/manual/en/function.print.php#66392).
| Unable to define multiple paths in SearchEngines.php | https://api.github.com/repos/matomo-org/matomo/issues/827/comments | 1 | 2009-06-25T13:52:45Z | 2014-07-08T10:00:47Z | https://github.com/matomo-org/matomo/issues/827 | 37,350,877 | 827 |
[
"matomo-org",
"matomo"
] | Line 20 should be something like:
SearchEngineDomain => array( SearchEnginesName, KeywordParameter(s) [PathContainingTheKeyword](,) [CharsetUsedBySearchEngine](,) )
A link to the faq would be nice, too:
http://piwik.org/faq/general/#faq_39
Keywords: search engines
| Outdated documentation in SearchEngines.php | https://api.github.com/repos/matomo-org/matomo/issues/826/comments | 2 | 2009-06-25T13:16:18Z | 2014-07-08T10:00:46Z | https://github.com/matomo-org/matomo/issues/826 | 37,350,874 | 826 |
[
"matomo-org",
"matomo"
] | It would be ideal to have event hooks to cater for existing users, that we can add additional functionality too.
```
Index: core/Tracker/Visit.php
===================================================================
--- core/Tracker/Visit.php (revision 2)
+++ core/Tracker/Visit.php (working copy)
@@ -148,6 +148,9 @@
$idActionReferer,
$this->visitorInfo['time_spent_ref_action']
);
+
+ Piwik_PostEvent('Tracker.existingVisitorInformation', $this->visitorInfo);
+
} catch(Piwik_Tracker_Visit_VisitorNotFoundInDatabase $e) {
printDebug($e->getMessage());
$this->visitorKnown = false;
```
| Adding event hook for existing users: | https://api.github.com/repos/matomo-org/matomo/issues/825/comments | 5 | 2009-06-25T12:30:53Z | 2014-07-08T10:00:58Z | https://github.com/matomo-org/matomo/issues/825 | 37,350,873 | 825 |
[
"matomo-org",
"matomo"
] | Patch from crowbot:
I've done a bit more work on trying to isolate this bug, using the same data set as frabcus. I've had some success in tracking it down further, and got a fix but not a definitive answer as to what the issue is.
Basically, the Actions plugin in piwik makes nested arrays to represent different 'actions' (url segments) in the logs of site visits. These then get made into DataTables, with various different sorting and limiting filters being applied to them.
The situation that I think causes the segfault is that there's a url with more than 10 slash-separated path segments in it, on a day when there are also more than 100 rows to record and archive. The url causes 10-deep array to be built (which is normally fine) but then the fact that there are more than 100 records causes filters to be applied to sort the records in the resulting data table, remove some, and add a summary row. This process somehow corrupts the data table such that any subsequent attempt to access rows in it causes a segfault (or on OSX, a bus error). It's fairly icky as the filter classes are generated on the fly and I think the problem may be something to do with several on-the-fly created classes holding a reference to this deeply nested array with objects in it. For now, the problem seems solved by unsetting a reference to it in the final filter after use.
```
--- core/DataTable/Filter/AddSummaryRow.php (revision 1152)
+++ core/DataTable/Filter/AddSummaryRow.php (working copy)
@@ -68,5 +68,6 @@
$newRow->setColumns(array('label' =>
$this->labelSummaryRow) + $newRow->getColumns());
$this->table->filter('Limit', array(0,
$this->startRowToSummarize));
$this->table->addSummaryRow($newRow);
+ unset($rows);
}
}
```
http://forum.piwik.org/index.php?showtopic=830&view=findpost&p=2980
| Bugging out with deeply nested action urls | https://api.github.com/repos/matomo-org/matomo/issues/824/comments | 5 | 2009-06-24T18:02:26Z | 2014-07-08T10:00:46Z | https://github.com/matomo-org/matomo/issues/824 | 37,350,872 | 824 |
[
"matomo-org",
"matomo"
] | Hi,
today I want to open the statistics page and got the following error:
Declaration of Piwik_Event_Notification::increaseNotificationCount() should be compatible with that of Event_Notification::increaseNotificationCount()
in '/homepages/5/d199283295/htdocs/piwik/core/PluginsManager.php' at the line 509
#0 Piwik_ErrorHandler(2048, Declaration of Piwik_Event_Notification::increaseNotificationCount() should be compatible with that of Event_Notification::increaseNotificationCount(), /homepages/5/d199283295/htdocs/piwik/core/PluginsManager.php, 509, Array ([=> Array ( _RECURSION_,[_ENV](GLOBALS]) => Array ([=> /kunden/homepages/5/d199283295/htdocs:d0000#CPU 6 #MEM 10240 #CGI 342 #NPROC 12 #TAID 44593041 #WERB 0 #LANG 0 #PARKING 1 #STAT 1,[DOCUMENT_ROOT](DBENTRY]) => /kunden/homepages/5/d199283295/htdocs,[=> text/html,application/xhtml+xml,application/xml;q=0.9,_/_;q=0.8,[HTTP_ACCEPT_CHARSET](HTTP_ACCEPT]) => ISO-8859-1,utf-8;q=0.7,_;q=0.7,[=> gzip,deflate,[HTTP_ACCEPT_LANGUAGE](HTTP_ACCEPT_ENCODING]) => de-de,de;q=0.8,en-us;q=0.5,en;q=0.3,[=> max-age=0,[HTTP_CONNECTION](HTTP_CACHE_CONTROL]) => keep-alive,[=> piwik_visitor1=1%3DOTI0NzYwNDU0NzhlNGExYTAxNzBkN2MxYjk3MzE3Nzg%3D%3A2%3DMTI0NTc0Mjc1Mg%3D%3D%3A3%3DMTI0NTc0MjI2Mg%3D%3D%3A4%3DNDk0%3A5%3DMjQ5%3A11%3DMQ%3D%3D; piwik_auth=login%3DdW5jbGVqYXk%3D%3Atoken_auth%3DY2I2NDJlMDkyZDRlOTE1MDRmNzQ3YjQwYWNmNzhhNjA%3D; __utma=12960820.325504608.1218016715.1245739096.1245742260.96; __utmz=12960820.1233823355.25.1.utmccn=(direct)|utmcsr=(direct)|utmcmd=(none); __utmc=12960820; PHPSESSID=34e366b3c0337fcc936240cda781d4a1,[HTTP_HOST](HTTP_COOKIE]) => base.reimesch.de,[=> 300,[HTTP_USER_AGENT](HTTP_KEEP_ALIVE]) => Mozilla/5.0 (Windows; U; Windows NT 6.0; de; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11 (.NET CLR 3.5.30729),[=> /bin:/usr/bin,[REDIRECT_DBENTRY](PATH]) => /kunden/homepages/5/d199283295/htdocs:d0000#CPU 6 #MEM 10240 #CGI 342 #NPROC 12 #TAID 44593041 #WERB 0 #LANG 0 #PARKING 1 #STAT 1,[=> /kunden/homepages/5/d199283295/htdocs:d0000#CPU 6 #MEM 10240 #CGI 342 #NPROC 12 #TAID 44593041 #WERB 0 #LANG 0 #PARKING 1 #STAT 1,[REDIRECT_REDIRECT_SCRIPT_URI](REDIRECT_REDIRECT_DBENTRY]) => http://base.reimesch.de/piwik/,[=> /piwik/,[REDIRECT_REDIRECT_STATUS](REDIRECT_REDIRECT_SCRIPT_URL]) => 200,[=> SkHfi9TjcowAAEl-n@4,[REDIRECT_SCRIPT_URI](REDIRECT_REDIRECT_UNIQUE_ID]) => http://base.reimesch.de/piwik/,[=> /piwik/,[REDIRECT_STATUS](REDIRECT_SCRIPT_URL]) => 200,[=> SkHfi9TjcowAAEl-n@4,[REDIRECT_URL](REDIRECT_UNIQUE_ID]) => /piwik/index.php,[=> 195.14.209.118,[REMOTE_PORT](REMOTE_ADDR]) => 64580,[=> /kunden/homepages/5/d199283295/htdocs/piwik/index.php,[SCRIPT_URI](SCRIPT_FILENAME]) => http://base.reimesch.de/piwik/,[=> /piwik/,[SERVER_ADDR](SCRIPT_URL]) => 87.106.120.193,[=> webmaster@base.reimesch.de,[SERVER_NAME](SERVER_ADMIN]) => base.reimesch.de,[=> 80,[SERVER_SIGNATURE](SERVER_PORT]) => ,[=> Apache,[UNIQUE_ID](SERVER_SOFTWARE]) => SkHfi9TjcowAAEl-n@4,[=> CGI/1.1,[SERVER_PROTOCOL](GATEWAY_INTERFACE]) => HTTP/1.1,[=> GET,[QUERY_STRING](REQUEST_METHOD]) => ,[=> /piwik/,[SCRIPT_NAME](REQUEST_URI]) => /piwik/index.php,[=> 200,[ORIG_PATH_INFO](STATUS]) => /piwik/index.php,[=> /kunden/homepages/5/d199283295/htdocs/piwik/index.php),[HTTP_ENV_VARS](ORIG_PATH_TRANSLATED]) => Array ([=> /kunden/homepages/5/d199283295/htdocs:d0000#CPU 6 #MEM 10240 #CGI 342 #NPROC 12 #TAID 44593041 #WERB 0 #LANG 0 #PARKING 1 #STAT 1,[DOCUMENT_ROOT](DBENTRY]) => /kunden/homepages/5/d199283295/htdocs,[=> text/html,application/xhtml+xml,application/xml;q=0.9,_/_;q=0.8,[HTTP_ACCEPT_CHARSET](HTTP_ACCEPT]) => ISO-8859-1,utf-8;q=0.7,_;q=0.7,[=> gzip,deflate,[HTTP_ACCEPT_LANGUAGE](HTTP_ACCEPT_ENCODING]) => de-de,de;q=0.8,en-us;q=0.5,en;q=0.3,[=> max-age=0,[HTTP_CONNECTION](HTTP_CACHE_CONTROL]) => keep-alive,[=> piwik_visitor1=1%3DOTI0NzYwNDU0NzhlNGExYTAxNzBkN2MxYjk3MzE3Nzg%3D%3A2%3DMTI0NTc0Mjc1Mg%3D%3D%3A3%3DMTI0NTc0MjI2Mg%3D%3D%3A4%3DNDk0%3A5%3DMjQ5%3A11%3DMQ%3D%3D; piwik_auth=login%3DdW5jbGVqYXk%3D%3Atoken_auth%3DY2I2NDJlMDkyZDRlOTE1MDRmNzQ3YjQwYWNmNzhhNjA%3D; __utma=12960820.325504608.1218016715.1245739096.1245742260.96; __utmz=12960820.1233823355.25.1.utmccn=(direct)|utmcsr=(direct)|utmcmd=(none); __utmc=12960820; PHPSESSID=34e366b3c0337fcc936240cda781d4a1,[HTTP_HOST](HTTP_COOKIE]) => base.reimesch.de,[=> 300,[HTTP_USER_AGENT](HTTP_KEEP_ALIVE]) => Mozilla/5.0 (Windows; U; Windows NT 6.0; de; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11 (.NET CLR 3.5.30729),[=> /bin:/usr/bin,[REDIRECT_DBENTRY](PATH]) => /kunden/homepages/5/d199283295/htdocs:d0000#CPU 6 #MEM 10240 #CGI 342 #NPROC 12 #TAID 44593041 #WERB 0 #LANG 0 #PARKING 1 #STAT 1,[=> /kunden/homepages/5/d199283295/htdocs:d0000#CPU 6 #MEM 10240 #CGI 342 #NPROC 12 #TAID 44593041 #WERB 0 #LANG 0 #PARKING 1 #STAT 1,[REDIRECT_REDIRECT_SCRIPT_URI](REDIRECT_REDIRECT_DBENTRY]) => http://base.reimesch.de/piwik/,[=> /piwik/,[REDIRECT_REDIRECT_STATUS](REDIRECT_REDIRECT_SCRIPT_URL]) => 200,[=> SkHfi9TjcowAAEl-n@4,[REDIRECT_SCRIPT_URI](REDIRECT_REDIRECT_UNIQUE_ID]) => http://base.reimesch.de/piwik/,[=> /piwik/,[REDIRECT_STATUS](REDIRECT_SCRIPT_URL]) => 200,[=> SkHfi9TjcowAAEl-n@4,[REDIRECT_URL](REDIRECT_UNIQUE_ID]) => /piwik/index.php,[=> 195.14.209.118,[REMOTE_PORT](REMOTE_ADDR]) => 64580,[=> /kunden/homepages/5/d199283295/htdocs/piwik/index.php,[SCRIPT_URI](SCRIPT_FILENAME]) => http://base.reimesch.de/piwik/,[=> /piwik/,[SERVER_ADDR](SCRIPT_URL]) => 87.106.120.193,[=> webmaster@base.reimesch.de,[SERVER_NAME](SERVER_ADMIN]) => base.reimesch.de,[=> 80,[SERVER_SIGNATURE](SERVER_PORT]) => ,[=> Apache,[UNIQUE_ID](SERVER_SOFTWARE]) => SkHfi9TjcowAAEl-n@4,[=> CGI/1.1,[SERVER_PROTOCOL](GATEWAY_INTERFACE]) => HTTP/1.1,[=> GET,[QUERY_STRING](REQUEST_METHOD]) => ,[=> /piwik/,[SCRIPT_NAME](REQUEST_URI]) => /piwik/index.php,[=> 200,[ORIG_PATH_INFO](STATUS]) => /piwik/index.php,[=> /kunden/homepages/5/d199283295/htdocs/piwik/index.php),[_POST](ORIG_PATH_TRANSLATED]) => Array (),[=> Array (),[_GET](HTTP_POST_VARS]) => Array (),[=> Array (),[_COOKIE](HTTP_GET_VARS]) => Array ([=> 1=OTI0NzYwNDU0NzhlNGExYTAxNzBkN2MxYjk3MzE3Nzg=:2=MTI0NTc0Mjc1Mg==:3=MTI0NTc0MjI2Mg==:4=NDk0:5=MjQ5:11=MQ==,[piwik_auth](piwik_visitor1]) => login=dW5jbGVqYXk=:token_auth=Y2I2NDJlMDkyZDRlOTE1MDRmNzQ3YjQwYWNmNzhhNjA=,[=> 12960820.325504608.1218016715.1245739096.1245742260.96,[__utmz](__utma]) => 12960820.1233823355.25.1.utmccn=(direct)|utmcsr=(direct)|utmcmd=(none),[=> 12960820,[PHPSESSID](__utmc]) => 34e366b3c0337fcc936240cda781d4a1),[=> Array ([piwik_visitor1](HTTP_COOKIE_VARS]) => 1=OTI0NzYwNDU0NzhlNGExYTAxNzBkN2MxYjk3MzE3Nzg=:2=MTI0NTc0Mjc1Mg==:3=MTI0NTc0MjI2Mg==:4=NDk0:5=MjQ5:11=MQ==,[=> login=dW5jbGVqYXk=:token_auth=Y2I2NDJlMDkyZDRlOTE1MDRmNzQ3YjQwYWNmNzhhNjA=,[__utma](piwik_auth]) => 12960820.325504608.1218016715.1245739096.1245742260.96,[=> 12960820.1233823355.25.1.utmccn=(direct)|utmcsr=(direct)|utmcmd=(none),[__utmc](__utmz]) => 12960820,[=> 34e366b3c0337fcc936240cda781d4a1),[_SERVER](PHPSESSID]) => Array ([=> /kunden/homepages/5/d199283295/htdocs:d0000#CPU 6 #MEM 10240 #CGI 342 #NPROC 12 #TAID 44593041 #WERB 0 #LANG 0 #PARKING 1 #STAT 1,[DOCUMENT_ROOT](DBENTRY]) => /kunden/homepages/5/d199283295/htdocs,[=> text/html,application/xhtml+xml,application/xml;q=0.9,_/_;q=0.8,[HTTP_ACCEPT_CHARSET](HTTP_ACCEPT]) => ISO-8859-1,utf-8;q=0.7,_;q=0.7,[=> gzip,deflate,[HTTP_ACCEPT_LANGUAGE](HTTP_ACCEPT_ENCODING]) => de-de,de;q=0.8,en-us;q=0.5,en;q=0.3,[=> max-age=0,[HTTP_CONNECTION](HTTP_CACHE_CONTROL]) => keep-alive,[=> piwik_visitor1=1%3DOTI0NzYwNDU0NzhlNGExYTAxNzBkN2MxYjk3MzE3Nzg%3D%3A2%3DMTI0NTc0Mjc1Mg%3D%3D%3A3%3DMTI0NTc0MjI2Mg%3D%3D%3A4%3DNDk0%3A5%3DMjQ5%3A11%3DMQ%3D%3D; piwik_auth=login%3DdW5jbGVqYXk%3D%3Atoken_auth%3DY2I2NDJlMDkyZDRlOTE1MDRmNzQ3YjQwYWNmNzhhNjA%3D; __utma=12960820.325504608.1218016715.1245739096.1245742260.96; __utmz=12960820.1233823355.25.1.utmccn=(direct)|utmcsr=(direct)|utmcmd=(none); __utmc=12960820; PHPSESSID=34e366b3c0337fcc936240cda781d4a1,[HTTP_HOST](HTTP_COOKIE]) => base.reimesch.de,[=> 300,[HTTP_USER_AGENT](HTTP_KEEP_ALIVE]) => Mozilla/5.0 (Windows; U; Windows NT 6.0; de; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11 (.NET CLR 3.5.30729),[=> /bin:/usr/bin,[REDIRECT_DBENTRY](PATH]) => /kunden/homepages/5/d199283295/htdocs:d0000#CPU 6 #MEM 10240 #CGI 342 #NPROC 12 #TAID 44593041 #WERB 0 #LANG 0 #PARKING 1 #STAT 1,[=> /kunden/homepages/5/d199283295/htdocs:d0000#CPU 6 #MEM 10240 #CGI 342 #NPROC 12 #TAID 44593041 #WERB 0 #LANG 0 #PARKING 1 #STAT 1,[REDIRECT_REDIRECT_SCRIPT_URI](REDIRECT_REDIRECT_DBENTRY]) => http://base.reimesch.de/piwik/,[=> /piwik/,[REDIRECT_REDIRECT_STATUS](REDIRECT_REDIRECT_SCRIPT_URL]) => 200,[=> SkHfi9TjcowAAEl-n@4,[REDIRECT_SCRIPT_URI](REDIRECT_REDIRECT_UNIQUE_ID]) => http://base.reimesch.de/piwik/,[=> /piwik/,[REDIRECT_STATUS](REDIRECT_SCRIPT_URL]) => 200,[=> SkHfi9TjcowAAEl-n@4,[REDIRECT_URL](REDIRECT_UNIQUE_ID]) => /piwik/index.php,[=> 195.14.209.118,[REMOTE_PORT](REMOTE_ADDR]) => 64580,[=> /kunden/homepages/5/d199283295/htdocs/piwik/index.php,[SCRIPT_URI](SCRIPT_FILENAME]) => http://base.reimesch.de/piwik/,[=> /piwik/,[SERVER_ADDR](SCRIPT_URL]) => 87.106.120.193,[=> webmaster@base.reimesch.de,[SERVER_NAME](SERVER_ADMIN]) => base.reimesch.de,[=> 80,[SERVER_SIGNATURE](SERVER_PORT]) => ,[=> Apache,[UNIQUE_ID](SERVER_SOFTWARE]) => SkHfi9TjcowAAEl-n@4,[=> CGI/1.1,[SERVER_PROTOCOL](GATEWAY_INTERFACE]) => HTTP/1.1,[=> GET,[QUERY_STRING](REQUEST_METHOD]) => ,[=> /piwik/,[SCRIPT_NAME](REQUEST_URI]) => /piwik/index.php,[=> 200,[ORIG_PATH_INFO](STATUS]) => /piwik/index.php,[=> /kunden/homepages/5/d199283295/htdocs/piwik/index.php,[PHP_SELF](ORIG_PATH_TRANSLATED]) => /piwik/index.php,[=> 1245831051,[argv](REQUEST_TIME]) => Array (),[=> 0),[HTTP_SERVER_VARS](argc]) => Array ([=> /kunden/homepages/5/d199283295/htdocs:d0000#CPU 6 #MEM 10240 #CGI 342 #NPROC 12 #TAID 44593041 #WERB 0 #LANG 0 #PARKING 1 #STAT 1,[DOCUMENT_ROOT](DBENTRY]) => /kunden/homepages/5/d199283295/htdocs,[=> text/html,application/xhtml+xml,application/xml;q=0.9,_/_;q=0.8,[HTTP_ACCEPT_CHARSET](HTTP_ACCEPT]) => ISO-8859-1,utf-8;q=0.7,_;q=0.7,[=> gzip,deflate,[HTTP_ACCEPT_LANGUAGE](HTTP_ACCEPT_ENCODING]) => de-de,de;q=0.8,en-us;q=0.5,en;q=0.3,[=> max-age=0,[HTTP_CONNECTION](HTTP_CACHE_CONTROL]) => keep-alive,[=> piwik_visitor1=1%3DOTI0NzYwNDU0NzhlNGExYTAxNzBkN2MxYjk3MzE3Nzg%3D%3A2%3DMTI0NTc0Mjc1Mg%3D%3D%3A3%3DMTI0NTc0MjI2Mg%3D%3D%3A4%3DNDk0%3A5%3DMjQ5%3A11%3DMQ%3D%3D; piwik_auth=login%3DdW5jbGVqYXk%3D%3Atoken_auth%3DY2I2NDJlMDkyZDRlOTE1MDRmNzQ3YjQwYWNmNzhhNjA%3D; __utma=12960820.325504608.1218016715.1245739096.1245742260.96; __utmz=12960820.1233823355.25.1.utmccn=(direct)|utmcsr=(direct)|utmcmd=(none); __utmc=12960820; PHPSESSID=34e366b3c0337fcc936240cda781d4a1,[HTTP_HOST](HTTP_COOKIE]) => base.reimesch.de,[=> 300,[HTTP_USER_AGENT](HTTP_KEEP_ALIVE]) => Mozilla/5.0 (Windows; U; Windows NT 6.0; de; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11 (.NET CLR 3.5.30729),[=> /bin:/usr/bin,[REDIRECT_DBENTRY](PATH]) => /kunden/homepages/5/d199283295/htdocs:d0000#CPU 6 #MEM 10240 #CGI 342 #NPROC 12 #TAID 44593041 #WERB 0 #LANG 0 #PARKING 1 #STAT 1,[=> /kunden/homepages/5/d199283295/htdocs:d0000#CPU 6 #MEM 10240 #CGI 342 #NPROC 12 #TAID 44593041 #WERB 0 #LANG 0 #PARKING 1 #STAT 1,[REDIRECT_REDIRECT_SCRIPT_URI](REDIRECT_REDIRECT_DBENTRY]) => http://base.reimesch.de/piwik/,[=> /piwik/,[REDIRECT_REDIRECT_STATUS](REDIRECT_REDIRECT_SCRIPT_URL]) => 200,[=> SkHfi9TjcowAAEl-n@4,[REDIRECT_SCRIPT_URI](REDIRECT_REDIRECT_UNIQUE_ID]) => http://base.reimesch.de/piwik/,[=> /piwik/,[REDIRECT_STATUS](REDIRECT_SCRIPT_URL]) => 200,[=> SkHfi9TjcowAAEl-n@4,[REDIRECT_URL](REDIRECT_UNIQUE_ID]) => /piwik/index.php,[=> 195.14.209.118,[REMOTE_PORT](REMOTE_ADDR]) => 64580,[=> /kunden/homepages/5/d199283295/htdocs/piwik/index.php,[SCRIPT_URI](SCRIPT_FILENAME]) => http://base.reimesch.de/piwik/,[=> /piwik/,[SERVER_ADDR](SCRIPT_URL]) => 87.106.120.193,[=> webmaster@base.reimesch.de,[SERVER_NAME](SERVER_ADMIN]) => base.reimesch.de,[=> 80,[SERVER_SIGNATURE](SERVER_PORT]) => ,[=> Apache,[UNIQUE_ID](SERVER_SOFTWARE]) => SkHfi9TjcowAAEl-n@4,[=> CGI/1.1,[SERVER_PROTOCOL](GATEWAY_INTERFACE]) => HTTP/1.1,[=> GET,[QUERY_STRING](REQUEST_METHOD]) => ,[=> /piwik/,[SCRIPT_NAME](REQUEST_URI]) => /piwik/index.php,[=> 200,[ORIG_PATH_INFO](STATUS]) => /piwik/index.php,[=> /kunden/homepages/5/d199283295/htdocs/piwik/index.php,[PHP_SELF](ORIG_PATH_TRANSLATED]) => /piwik/index.php,[=> 1245831051,[argv](REQUEST_TIME]) => Array (),[=> 0),[_FILES](argc]) => Array (),[=> Array (),[_REQUEST](HTTP_POST_FILES]) => Array ([=> 1=OTI0NzYwNDU0NzhlNGExYTAxNzBkN2MxYjk3MzE3Nzg=:2=MTI0NTc0Mjc1Mg==:3=MTI0NTc0MjI2Mg==:4=NDk0:5=MjQ5:11=MQ==,[piwik_auth](piwik_visitor1]) => login=dW5jbGVqYXk=:token_auth=Y2I2NDJlMDkyZDRlOTE1MDRmNzQ3YjQwYWNmNzhhNjA=,[=> 12960820.325504608.1218016715.1245739096.1245742260.96,[__utmz](__utma]) => 12960820.1233823355.25.1.utmccn=(direct)|utmcsr=(direct)|utmcmd=(none),[=> 12960820,[PHPSESSID](__utmc]) => 34e366b3c0337fcc936240cda781d4a1),[=> 5.1.3,[piwik_currentPHPVersion](piwik_minimumPHPVersion]) => 5.2.10,[=> 0,[HTTP_SESSION_VARS](piwik_zend_compatibility_mode]) => Array (),[=> Array (),[_Event_Dispatcher](_SESSION]) => Array ([=> Event_Notification))) called at [/homepages/5/d199283295/htdocs/piwik/core/PluginsManager.php:509](NotificationClass])
#1 require_once(/homepages/5/d199283295/htdocs/piwik/core/PluginsManager.php) called at [/homepages/5/d199283295/htdocs/piwik/core/FrontController.php:24]
#2 require_once(/homepages/5/d199283295/htdocs/piwik/core/FrontController.php) called at [/homepages/5/d199283295/htdocs/piwik/index.php:48]
| 0.4: control panel | https://api.github.com/repos/matomo-org/matomo/issues/823/comments | 2 | 2009-06-24T10:14:13Z | 2014-07-08T10:00:46Z | https://github.com/matomo-org/matomo/issues/823 | 37,350,871 | 823 |
[
"matomo-org",
"matomo"
] | When trying to detect if we have a campaign keyword, the code calls
Piwik_Common::getParameterFromQueryString($this->currentUrlParse['query'], $campaignKeywordVariableName);
the $urlQuery is: ariba_campaign=Adwords-CPC&ariba_kwd=My killer keyword
and the $parameter is ariba_kwd
Note that the & was inserted when calling parse_url
The comment of the function Piwik_Common::getParameterFromQueryString:
```
* @param string $urlQuery result of parse_url()['query'] and htmlentitied (& is &) eg. module=test&action=toto or ?page=test
```
and it does appear that since the "&" is now & it has been htmlspecialchar'ed.
However since the split happens on &, we get &ariba_kwd=My killer keyword and do not match ariba_kwd
##
Note that this comment indicates that this data is expected in this format:
```
/**
* Returns the value of a GET parameter $parameter in an URL query $urlQuery
*
* @param string $urlQuery result of parse_url()['query'] and htmlentitied (& is &) eg. module=test&action=toto or ?page=test
* @param string $param
*
* @return string|bool Parameter value if found (can be the empty string!), false if not found
*/
static public function getParameterFromQueryString( $urlQuery, $parameter)
```
##
I might try to fix this in my local copy, but I'm new enough to Piwik to be leery of anything more at the moment.
| fail extracting campaign keyword | https://api.github.com/repos/matomo-org/matomo/issues/822/comments | 1 | 2009-06-22T20:54:29Z | 2023-08-13T20:15:22Z | https://github.com/matomo-org/matomo/issues/822 | 37,350,870 | 822 |
[
"matomo-org",
"matomo"
] | Hi,
I just upgraded to PHP 5.2.10 (from 5.2.9) and now I get the following error accessing piwik:
```
Declaration of Piwik_Log_APICall::log() should be compatible with that of Piwik_Log::log()
in '/path/to/piwik/core/Log/APICall.php' at the line 52
```
Here's the stack trace:
```
#0 Piwik_ErrorHandler(2048, Declaration of Piwik_Log_APICall::log() should be compatible with that of Piwik_Log::log(), /path/to/piwik/core/Log/APICall.php, 52, Array ()) called at [/path/to/piwik/core/Piwik.php:1232]
#1 Piwik::createLogObject() called at [/path/to/piwik/core/Piwik.php:1232]
#2 Piwik::createLogObject() called at [/path/to/piwik/core/FrontController.php:232]
#3 Piwik_FrontController->init() called at [/path/to/piwik/index.php:53]
```
Benjamin
| Incompatible method declaration in Piwik_Log_APICall | https://api.github.com/repos/matomo-org/matomo/issues/821/comments | 7 | 2009-06-22T11:24:02Z | 2014-07-08T10:00:45Z | https://github.com/matomo-org/matomo/issues/821 | 37,350,869 | 821 |
[
"matomo-org",
"matomo"
] | If empty result set you cannot retrieve the columns, see modified code below
```
/**
* Returns columns names to display, in order.
* If no columns were specified to be displayed, return all columns found in the first row.
* @param array PHP array conversion of the data table
* @return array
*/
public function getColumnsToDisplay()
{
if(empty($this->columnsToDisplay))
{
$row = $this->dataTable->getFirstRow();
if (empty($row))
return array();
return array_keys($row->getColumns());
}
$this->columnsToDisplay = array_filter($this->columnsToDisplay);
return $this->columnsToDisplay;
}
```
| Piwik_ViewDataTable: $this->dataTable->getFirstRow() returns false and attempts to access getColumns() | https://api.github.com/repos/matomo-org/matomo/issues/820/comments | 1 | 2009-06-21T19:58:47Z | 2014-07-08T10:00:45Z | https://github.com/matomo-org/matomo/issues/820 | 37,350,868 | 820 |
[
"matomo-org",
"matomo"
] | php overloading is a misnomer; propose we use func_get_args
http://forum.piwik.org/index.php?showtopic=1108
are there any known issues with Piwik v0.4 and PHP v5.2.10?
Accessing Piwik I get:
Declaration of Piwik_Event_Notification::increaseNotificationCount() should be compatible with that of Event_Notification::increaseNotificationCount()
in '\piwik\core\PluginsManager.php' at the line 509
It used to work with PHP v5.2.9.2.
| php 5.2.10 error message re: incompatible function override | https://api.github.com/repos/matomo-org/matomo/issues/819/comments | 2 | 2009-06-21T07:33:29Z | 2014-07-08T10:00:46Z | https://github.com/matomo-org/matomo/issues/819 | 37,350,867 | 819 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.