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"
] | ```
PHP Fatal error: Uncaught exception 'Exception' with message 'Error query: SQLSTATE[23000]:
Integrity constraint violation: 1048 Column 'config_browser_name' cannot be null' in /path/to/piwik/core/Tracker/Db.php:193
Stack trace:
#0 /path/to/piwik/core/Tracker/Visit.php(240): Piwik_Tracker_Db->query('INSERT INTO pwk...', Array)
#1 /path/to/piwik/core/Tracker/Visit.php(106): Piwik_Tracker_Visit->handleNewVisit('1', false)
#2 /path/to/piwik/core/Tracker.php(60): Piwik_Tracker_Visit->handle()
#3 /path/to/piwik/piwik.php(52): Piwik_Tracker->main()
#4 {main}
thrown in /path/to/piwik/core/Tracker/Db.php on line 193
```
Can't tell much more as the insert failed. Changed pwk_log_visit so the field can be null to fix this for now.
| 'config_browser_name' cannot be null | https://api.github.com/repos/matomo-org/matomo/issues/618/comments | 4 | 2009-03-20T09:03:43Z | 2014-07-08T09:59:46Z | https://github.com/matomo-org/matomo/issues/618 | 37,350,593 | 618 |
[
"matomo-org",
"matomo"
] | Currently Piwik Coding Standard are documented here: [Piwik Coding Standard](http://dev.piwik.org/trac/wiki/CodingStandard).
But they have a number of slight differences with the Zend Framework Coding Standards, that are not justified. It would be ideal if Piwik used the same (very standard and widely used) [Zend Framework Coding Standard](http://framework.zend.com/manual/en/coding-standard.html).
Main differences:
- if else bracket indentation. The one used in Piwik makes the code a bit harder to read as it takes more lines.
- using four spaces for for indentation rather than tabs
Is there a script (or eclipse plugin for example) we can use to run all Piwik .php against, to automatically modify all files against this standard?
After quick research there seem to be [some solution](http://cogo.wordpress.com/2008/07/13/enforcing-a-php-coding-standard-using-php_codesniffer-part-2/)
Note that we're not looking into adding a post commit hook to enforce that the guide is respected, it's more about fixing the existing code in an automated manner in a "one shot" run of some script.
If anybody wants to tackle this, please comment! thanks.
| Consider switching coding standards to use Zend Framework Coding Standard | https://api.github.com/repos/matomo-org/matomo/issues/617/comments | 6 | 2009-03-20T05:32:27Z | 2014-07-08T09:59:45Z | https://github.com/matomo-org/matomo/issues/617 | 37,350,592 | 617 |
[
"matomo-org",
"matomo"
] | We should document all features of the goal tracking plugin in a simple one page documentation, including how to setup custom revenue through the javascript function call (currently missing see #774), how to track newsletter subscriptions, how to track downloads, etc.
See excellent use cases for the documentation on the page: http://www.webanalyticsworld.net/2009/03/10-must-track-google-analytics-goals.html
The documentation should for example explain how to:
- identify which paid keywords do convert, from which campaigns/websites?
- identify which paid keywords do NOT convert, from which campaigns/websites?
See also #517
| New documentation: How to use Goal Tracking? How to track custom revenue via the JS api? | https://api.github.com/repos/matomo-org/matomo/issues/616/comments | 6 | 2009-03-20T03:53:57Z | 2014-07-08T10:02:01Z | https://github.com/matomo-org/matomo/issues/616 | 37,350,591 | 616 |
[
"matomo-org",
"matomo"
] | We could easily add a set of basic hooks, based on common sense and most basic use cases. We already have the most important ones (add menu, add widget, hook on archiving, etc.) but we could add others:
- on page init, page end
- hooks in the archiving module so that archives of any plugin can be modified, or read and modified in a different archive
- etc.
| Based on most frequent use cases, add a set of basic hooks that third party developers would need | https://api.github.com/repos/matomo-org/matomo/issues/615/comments | 1 | 2009-03-20T03:33:22Z | 2014-07-08T10:01:06Z | https://github.com/matomo-org/matomo/issues/615 | 37,350,590 | 615 |
[
"matomo-org",
"matomo"
] | Piwik support for unix sockets is kludgey. The unix socket is configured (embedded in) the host setting:
```
host = "localhost;unix_socket=/path"
```
This results in a DSN that looks like "host=localhost;unix_socket=/path;port=3306".
For now, this appears to work, but according to PHP docs (http://www.php.net/manual/en/ref.pdo-mysql.connection.php), unix_socket "shouldn't be used with host or port" in the PDO DSN. (The implication is that while this works now, this may not be the case in the future.)
In core/Tracker/Db.php, I propose: (I omit the drivername and dbname to simplify the pseudocode)
```
if (host[0] == '/') {
dsn = "unix_socket=$host";
} else {
dsn = "host=$host;port=$port";
}
```
| MySQL: unix socket support | https://api.github.com/repos/matomo-org/matomo/issues/614/comments | 1 | 2009-03-18T14:29:54Z | 2014-07-08T10:00:55Z | https://github.com/matomo-org/matomo/issues/614 | 37,350,589 | 614 |
[
"matomo-org",
"matomo"
] | We need to decide on a hook naming convention for all Piwik hooks.
At first sight I would propose
- all hooks are either at the start or at the very end of a method. If current hooks are in the middle of a function, code should be refactored to put the hook either at start or end
- hooks are named Class.method for hooks at start of method, or Class.method.end for hooks at end of method.
- how to name hooks that make it possible to "replace" a php class?
Ideally we would generate an automatic documentation that would parse the calls to the Piwik_PostEvent function, and generate a simple page listing all existing hooks, as well as the phpdoc comment above the function call. See #5684
See also [drupal hooks documentation](http://api.drupal.org/api/file/modules/system/system.api.php/7/source)
| Decide on hook naming convention + update existing hooks | https://api.github.com/repos/matomo-org/matomo/issues/613/comments | 10 | 2009-03-18T03:52:31Z | 2014-07-08T10:17:32Z | https://github.com/matomo-org/matomo/issues/613 | 37,350,588 | 613 |
[
"matomo-org",
"matomo"
] | http://forum.piwik.org/index.php?showtopic=316
Need logic (eg input validation) to prevent this.
| Error when no sites configured | https://api.github.com/repos/matomo-org/matomo/issues/612/comments | 1 | 2009-03-17T15:16:37Z | 2014-07-08T09:59:45Z | https://github.com/matomo-org/matomo/issues/612 | 37,350,587 | 612 |
[
"matomo-org",
"matomo"
] | Unable to show views for a single page in a widget.
Example:
I have a page created for each user and I want that user to have analytics just for their page.
~/frank
~tom
and I want them to be able to see their stats here:
~/frank/stats
etc etc.
I have the pages created and the stat pages but can't figure out how to only show stats for ~/<user> page, instead I get siteID only.
| Page widget | https://api.github.com/repos/matomo-org/matomo/issues/611/comments | 1 | 2009-03-13T23:12:52Z | 2014-08-03T11:22:23Z | https://github.com/matomo-org/matomo/issues/611 | 37,350,586 | 611 |
[
"matomo-org",
"matomo"
] | Hi Guys
In German language the continent for USA is Sd-Amerika (South America) seem that the translation is wrong .. unluckily the only guests from hole America are from USA so I can not ensure that really the translation is wrong.
Max
| USA is counted to South America (in german version) | https://api.github.com/repos/matomo-org/matomo/issues/610/comments | 2 | 2009-03-13T07:43:53Z | 2014-07-08T09:59:44Z | https://github.com/matomo-org/matomo/issues/610 | 37,350,585 | 610 |
[
"matomo-org",
"matomo"
] | I am downloading data from piwik using API and in csv format.
However, at certain places, e.g. row 42, 56, 66 in attached file, the data is shifted to undesired columns stopping me from processing.
Keywords: csv
| Misaligned data when exported in CSV | https://api.github.com/repos/matomo-org/matomo/issues/609/comments | 4 | 2009-03-13T07:40:54Z | 2014-07-08T09:59:44Z | https://github.com/matomo-org/matomo/issues/609 | 37,350,584 | 609 |
[
"matomo-org",
"matomo"
] | That would be great if all tickets in trac were properly defined:
- component (core/ui/documentation/website) most of them are core, some would be mix of core and UI, we use good sense to assign to either core or UI
- type should be set to either Bug, New Feature. I deleted "Task" from now as it's not clear to me what is task VS new feature. This ticket would be ideal for a "task" but there are too little of them to have a category.
This is useful because then we can build list of opened bugs, opened new features, etc. that are actually complete. An example is on the contribute page where we invite people to look at "open bugs" or "open feature requests".
I think currently the classification in milestones is pretty good. We may revisit soon to make the "digital vibes" smaller, but ok for now.
| Make sure all existing tickets in TRAC are properly defined | https://api.github.com/repos/matomo-org/matomo/issues/608/comments | 0 | 2009-03-13T01:41:05Z | 2009-05-18T02:34:47Z | https://github.com/matomo-org/matomo/issues/608 | 37,350,583 | 608 |
[
"matomo-org",
"matomo"
] | currently to install a plugin users have to unzip the plugin, then upload the PluginName directory into plugins/PluginName, and then go the admin and enable it. It is quite confusing and could be made much more simpler, by providing:
- upload the plugin.zip ; piwik would unzip the file, check that it contains one directory with the name of the plugin, check that the PluginName.php file is present, copy the directory in plugins/ and reload the page where the user can enable the plugin.
| Add possibility to install a plugin by uploading the .zip file | https://api.github.com/repos/matomo-org/matomo/issues/607/comments | 8 | 2009-03-12T21:31:34Z | 2014-07-08T10:01:44Z | https://github.com/matomo-org/matomo/issues/607 | 37,350,582 | 607 |
[
"matomo-org",
"matomo"
] | Oops. Introduced a bug in my patch for #566. Custom vars are encoded by numerical index instead of the key/property name.
Attached patch reverses that one line.
Keywords: piwik.js
| Custom vars broken | https://api.github.com/repos/matomo-org/matomo/issues/606/comments | 2 | 2009-03-11T01:28:09Z | 2014-07-08T09:59:44Z | https://github.com/matomo-org/matomo/issues/606 | 37,350,580 | 606 |
[
"matomo-org",
"matomo"
] | see user post with error:
http://forum.piwik.org/index.php?s=&showtopic=229&view=findpost&p=1009
we have to investigate. it seems Piwik_LanguagesManager->getLanguageToLoad tries to get the user login before the access object was created, in frontcontroller line 237: Piwik_Translate::getInstance()->loadUserTranslation();
access is created line 258.
I don't know why it's not failing for other users.
| error after installation: user translation tries to use 'access' before it's loaded | https://api.github.com/repos/matomo-org/matomo/issues/605/comments | 1 | 2009-03-11T00:11:18Z | 2014-07-08T09:59:44Z | https://github.com/matomo-org/matomo/issues/605 | 37,350,579 | 605 |
[
"matomo-org",
"matomo"
] | - See new [Tracking Campaigns](http://piwik.org/docs/tracking-campaigns/)
- [URL Builder tool](http://piwik.org/docs/tracking-campaigns/url-builder/)
- Official piwik campaign parameters names are now: pk_campaign and pk_kwd (consistent with cookie prefix, better than piwik_ prefix)
- New FAQ: ["Does Piwik support Google Analytics campaign parameters (utm_campaign, utm_medium, utm_source, utm_term)?"](http://piwik.org/faq/general/#faq_119)
- New FAQ: ["How do I customize the Piwik Campaign parameters pk_campaign and pk_kwd?" ](http://piwik.org/faq/how-to/#faq_120)
| New documentation: how to use the campaign feature to track newsletters | https://api.github.com/repos/matomo-org/matomo/issues/604/comments | 14 | 2009-03-10T23:56:54Z | 2017-11-13T03:13:08Z | https://github.com/matomo-org/matomo/issues/604 | 37,350,577 | 604 |
[
"matomo-org",
"matomo"
] | Example: http://piwik.org/demo/index.php?module=API&method=LanguagesManager.getAvailableLanguages
should return XML rather than serialized PHP
| API: when not specified, XML should be returned, rather than serialized PHP | https://api.github.com/repos/matomo-org/matomo/issues/603/comments | 1 | 2009-03-10T23:04:24Z | 2014-07-08T09:59:44Z | https://github.com/matomo-org/matomo/issues/603 | 37,350,576 | 603 |
[
"matomo-org",
"matomo"
] | instead it should return 0
- also check that all API methods returning boolean are consistent and return either 0 or 1, and document it on the API reference page
| API: UsersManager.userExists returns empty value to mean no | https://api.github.com/repos/matomo-org/matomo/issues/602/comments | 1 | 2009-03-10T23:03:21Z | 2014-07-08T09:59:43Z | https://github.com/matomo-org/matomo/issues/602 | 37,350,575 | 602 |
[
"matomo-org",
"matomo"
] | For some reasons it would be nice to have the logo as SVG
| Add Piwik logo as SVG to the media | https://api.github.com/repos/matomo-org/matomo/issues/601/comments | 4 | 2009-03-10T22:27:29Z | 2014-07-08T09:59:43Z | https://github.com/matomo-org/matomo/issues/601 | 37,350,574 | 601 |
[
"matomo-org",
"matomo"
] | A user reported these warnings during archiving, that should def be fixed.
```
Warning: ereg() [function.ereg]: Fin d'intervalle invalide in /homez.59/unzero/www/piwik/core/Common.php on line 284 Backtrace -->#0 Piwik_ErrorHandler(2, ereg() [function.ereg]: Fin d'intervalle invalide, /homez.59/unzero/www/piwik/core/Common.php, 284, Array ([url] => jmleslangues.php)) #1 ereg(^(ftp|news|http|https)?://[A-Za-z0-9\/_.-?&]*, jmleslangues.php) called at [/homez.59/unzero/www/piwik/core/Common.php:284] #2 Piwik_Common::isLookLikeUrl(jmleslangues.php) called at [/homez.59/unzero/www/piwik/plugins/Actions/Actions.php:230] #3 Piwik_Actions::getActionCategoryFromName(jmleslangues.php) called at [/homez.59/unzero/www/piwik/plugins/Actions/Actions.php:258]
```
| warning during archiving | https://api.github.com/repos/matomo-org/matomo/issues/600/comments | 1 | 2009-03-10T20:58:55Z | 2024-06-17T20:10:35Z | https://github.com/matomo-org/matomo/issues/600 | 37,350,573 | 600 |
[
"matomo-org",
"matomo"
] | In the documentation http://piwik.org/docs/setup-auto-archiving/ should be a hint to place the archive.sh on another place than the document root. If it is in the document root everybody can download it and get the secret(?) api key.
| Make archive.sh not accessible via http | https://api.github.com/repos/matomo-org/matomo/issues/599/comments | 17 | 2009-03-10T18:25:44Z | 2014-07-08T09:59:43Z | https://github.com/matomo-org/matomo/issues/599 | 37,350,572 | 599 |
[
"matomo-org",
"matomo"
] | Single sign-on authentication would be useful when incorporating Piwik into existing environments already using CAS.
Keywords: third-party-plugin
| Plugin to provide Login via Central Authentication Service (CAS) | https://api.github.com/repos/matomo-org/matomo/issues/598/comments | 46 | 2009-03-10T16:04:53Z | 2014-08-03T11:26:00Z | https://github.com/matomo-org/matomo/issues/598 | 37,350,570 | 598 |
[
"matomo-org",
"matomo"
] | Add a new method to languagesManager to provide all string of a language.
| Add new method to languagesManager to show all string of a language | https://api.github.com/repos/matomo-org/matomo/issues/597/comments | 7 | 2009-03-10T15:14:01Z | 2014-07-08T09:59:42Z | https://github.com/matomo-org/matomo/issues/597 | 37,350,569 | 597 |
[
"matomo-org",
"matomo"
] | In the German language file the translations of North and South America (lines 511, 512) are mixed up:
```
511 'UserCountry_continent_ams' => 'Nord-Amerika',
512 'UserCountry_continent_amn' => 'Sd-Amerika',
```
ams should be "Sd-Amerika", amn has to be "Nord-Amerika".
| Translation Error in German language file | https://api.github.com/repos/matomo-org/matomo/issues/596/comments | 1 | 2009-03-10T11:41:23Z | 2014-08-03T11:22:23Z | https://github.com/matomo-org/matomo/issues/596 | 37,350,567 | 596 |
[
"matomo-org",
"matomo"
] | This Plugin is in a very early stage of developement. So, don't use it if you aren't a developer or tester!
### Features to be implemented
- you are free to choose the underlaying map from a great variety of maps, including Open Source Maps like OpenStreetMap and proprietary, such as Google Maps, Yahoo Maps, etc.
- show the location of your visitors on the map
- detailed information will be given as you click a marker
First version of the plugin will be attached as soon as it follows the coding standarts. Untill then use the version of the [piwik-hackers mailinglist](http://lists.piwik.org/pipermail/piwik-hackers/2009-March/000629.html).
Keywords: GeoIP, Map
| This Plugin uses the data generated by the GeoIP-Plugin (see Ticket #45) to view your visitors on a map. Various maps are going to be supported. | https://api.github.com/repos/matomo-org/matomo/issues/595/comments | 4 | 2009-03-10T10:06:43Z | 2014-08-03T11:22:23Z | https://github.com/matomo-org/matomo/issues/595 | 37,350,566 | 595 |
[
"matomo-org",
"matomo"
] | in the api response we have:
```
<result date="2009-03-09 to 2009-03-15">249</result>
```
instead it should be:
```
<result dateFrom="2009-03-09" dateTo="2009-03-15">249</result>
```
we should clarify whether or not the dateTo is fully included in the report or not.
see #5793
| Api: date="2008-03-17 to 2008-03-23" should be dateFrom and dateTo | https://api.github.com/repos/matomo-org/matomo/issues/594/comments | 3 | 2009-03-10T06:16:40Z | 2014-07-08T09:59:41Z | https://github.com/matomo-org/matomo/issues/594 | 37,350,565 | 594 |
[
"matomo-org",
"matomo"
] | In libs/Zend/Registry.php (line 146), replace:
```
require_once 'Exception.php';
```
with
```
require_once 'Zend/Exception.php';
```
(This is fixed in later versions of ZF.)
| Zend require_once path fix | https://api.github.com/repos/matomo-org/matomo/issues/593/comments | 2 | 2009-03-09T17:24:55Z | 2014-07-08T09:59:41Z | https://github.com/matomo-org/matomo/issues/593 | 37,350,564 | 593 |
[
"matomo-org",
"matomo"
] | For some reason and not sure when this happened but the first website in my Site Manager changed from "x" to "new example website." This is also changed the url from my url to "http://example.com"
Not sure if anyone has seen this before. It was still tracking and I simply just changed it back to where what it was but strange none the less
| new example website | https://api.github.com/repos/matomo-org/matomo/issues/592/comments | 3 | 2009-03-09T12:54:51Z | 2014-07-08T09:59:41Z | https://github.com/matomo-org/matomo/issues/592 | 37,350,563 | 592 |
[
"matomo-org",
"matomo"
] | The title on the VisitsSummary::index() -page is not properly translated. In /plugings/VisitsSummary/Controller.php the function index() contains the following:
```
$currentPeriod = Piwik_Common::getRequestVar('period');
$view->period = $currentPeriod;
```
and the translation string in the template (VisitsSummary_Evolution) is:
```
'VisitsSummary_Evolution' => 'Evolution on the last 30 %ss',
```
This does not work for other languages than English because:
1) The $period is not translated
2) This assumes that plural version of the time period can be conjugated by just adding a letter
The period should be translated, and this means that actually new translation items must be added for day, month and year for this context.
| VisitsSummary index does not properly translate time period | https://api.github.com/repos/matomo-org/matomo/issues/591/comments | 1 | 2009-03-09T10:51:17Z | 2014-07-08T09:59:41Z | https://github.com/matomo-org/matomo/issues/591 | 37,350,562 | 591 |
[
"matomo-org",
"matomo"
] | When I access Piwik via HTTPS with Internet Explorer, some graphs aren't displayed. Instead of the Graph there is only the URL shown. This occures with the plugins "Last unique visitors graph", "Last visits graph", "Visitor continents", "Browse by family" and "List of plugins".
Keywords: graph, plugin, display
| Doesn't display Graphs with IE 7.x / Access via HTTPS | https://api.github.com/repos/matomo-org/matomo/issues/590/comments | 13 | 2009-03-09T10:49:21Z | 2014-07-08T10:00:00Z | https://github.com/matomo-org/matomo/issues/590 | 37,350,561 | 590 |
[
"matomo-org",
"matomo"
] | Baidu is the biggest search engine in China and currently Piwik fails detecting keywords from baidu.
Example queries:
```
http://www.baidu.com/s?lm=0&si=&rn=10&ie=gb2312&ct=0&wd=%BF%DA%D3%EF+%CD%F2%C4%DC&pn=10&ver=0&cl=3&uim=0&usm=0
http://www.baidu.com/s?kw=&sc=web&cl=3&tn=sitehao123&ct=0&rn=&lm=&ie=gb2312&rs2=&myselectvalue=&f=&pv=&z=&from=&word=%B7%E8%BF%F1%CB%B5%D3%A2%D3%EF+%D4%DA%CF%DF%B9%DB%BF%B4
http://www.baidu.com/s?wd=%C1%F7%D0%D0%C3%C0%D3%EF%CF%C2%D4%D8
http://www.baidu.com/s?wd=%C1%F7%D0%D0%C3%C0%D3%EF+%CF%C2%D4%D8&lm=0&si=&rn=10&ie=gb2312&ct=0&cl=3&f=1&rsp=3&oq=VOA%C1%F7%D0%D0%C3%C0%D3%EF
http://web.gougou.com/search?search=%e6%b5%81%e8%a1%8c%e7%be%8e%e8%af%ad%20%e4%b8%8b%e8%bd%bd
```
Resolving this issue involves writing unit test to cover these bits of code.
Also we should check whether the code path around line 715 in core/Tracker/Visit.php is useful, if not fix it or delete it.
| Piwik fails to properly decode and store some chinese keywords (eg. from baidu.com) | https://api.github.com/repos/matomo-org/matomo/issues/589/comments | 3 | 2009-03-09T04:15:24Z | 2024-01-03T05:03:57Z | https://github.com/matomo-org/matomo/issues/589 | 37,350,560 | 589 |
[
"matomo-org",
"matomo"
] | Piwik statistics can be distortet by copying the JavaScript code to third party sites.
In the "Websites Management" you can add new sites with their URLs. But everybody can copy your JavaScript code to his own site and manipulate your statistics.
Piwik needs to be updated with a function that defines domains that are allowed to be counted.
| New website setting: Only track visits and actions when the action URL starts with one of the above URLs | https://api.github.com/repos/matomo-org/matomo/issues/588/comments | 31 | 2009-03-05T18:15:29Z | 2024-01-03T05:03:59Z | https://github.com/matomo-org/matomo/issues/588 | 37,350,559 | 588 |
[
"matomo-org",
"matomo"
] | Currently archiving is triggered
- when users request it via the user interface, which could lead to slow loading time
- if users have scheduled automatic triggering as documented in http://piwik.org/docs/setup-auto-archiving/
However, the archiving could be automatically triggered from the piwik.php script.
When a visit/page view is tracked by piwik.php
- decide if website archiving (and/or scheduled tasks see #1184) should be triggered. If we trigger the process then:
- piwik.php script would set timeout to large value, eg. 30minutes
- we can use ignore_user_abort so that archiving keeps working even if user cancels the request (which will likely happen most of time!)
- the auto archiving would be triggered for the website currently hit by piwik.php, to minimize the task ; what happens in the case where 10 archiving for 10 different idsite are triggered at same time? does it conflict at some stage?
- there should be a lock when the process is starting (watchdog) so that it doesn't start multiple time within the "timeout" set earlier. If requests finishes before timeout, then it's good. If not, archving times out, next archiving tries to launch after "timeout" seconds. Maybe we could add a security to do this only a limited number of times, eg. 5 times, before not trying again for that day.
- the timestamp value where auto archiving was last triggered + count failed tries + other values should be saved in the cached tracker file, to avoid DB lookup. value should be persisted in piwik_option table.
- if it is detected that the unix crontab archive.sh script was ran in the last N hour (N==1?), the piwik.php calls will not fire the archiving (as it is already succesfully setup)
Other notes:
- It should be possible to disable this feature. Timeout should be configurable.
- We should update the doc on http://piwik.org/docs/setup-auto-archiving/
This feature will be useful to increase usability by making UI faster for people without cronjob. Also less users will need to schedule crontab archiving so will save time to Piwik users.
| Automatically trigger the archiving script from piwik.php | https://api.github.com/repos/matomo-org/matomo/issues/587/comments | 3 | 2009-03-04T00:38:55Z | 2014-07-08T10:02:06Z | https://github.com/matomo-org/matomo/issues/587 | 37,350,558 | 587 |
[
"matomo-org",
"matomo"
] | ---
Error while copying file to home/ftp/piwik/lang/ja.php.
Please check that the web server has enough permission to overwrite this file.
For example, on a linux server, if your apache user is www-data you can try to execute:
chown -R www-data:www-data /var/alternc/html/a/admin/home/ftp/piwik
chmod -R 0755 /var/alternc/html/a/admin/home/ftp/piwik
Update has been cancelled.
---
choosing "major"
| error when i auto-update | https://api.github.com/repos/matomo-org/matomo/issues/586/comments | 4 | 2009-03-03T10:39:47Z | 2014-07-08T09:59:40Z | https://github.com/matomo-org/matomo/issues/586 | 37,350,555 | 586 |
[
"matomo-org",
"matomo"
] | Steps
- add hooks in SitesManager.deleteSite
- review all existing data in the DB related to a given website
- make sure all plugins listen to SitesManager.deleteSite and delete the website data from the DB
| All Plugins should hook on SitesManager.deleteSite and delete the data for the newly deleted website | https://api.github.com/repos/matomo-org/matomo/issues/585/comments | 4 | 2009-03-03T05:29:23Z | 2014-07-08T10:06:17Z | https://github.com/matomo-org/matomo/issues/585 | 37,350,554 | 585 |
[
"matomo-org",
"matomo"
] | We could provide a new report: visit count until conversion
**Example**
You have 1000 conversions
- 500 conversions happened on the first visit
- 200 conversions happened on the second visit
- 60 conversions happened on the third to fifth visit
- etc.
| New Metric: visit count until conversion | https://api.github.com/repos/matomo-org/matomo/issues/584/comments | 35 | 2009-03-03T04:24:10Z | 2014-07-08T10:05:51Z | https://github.com/matomo-org/matomo/issues/584 | 37,350,552 | 584 |
[
"matomo-org",
"matomo"
] | We could provide a new report: days since last visit
**Example**
You have 1000 unique visitors;
- 500 are new visitors
- 300 visited your site 1 day ago
- 100 visited your site between 2 and 5 days ago
- 10 visited your site between 5 and 15 ago
- etc.
| New report "Visitors Recency", days since last visit | https://api.github.com/repos/matomo-org/matomo/issues/583/comments | 21 | 2009-03-03T04:22:36Z | 2015-06-18T03:31:03Z | https://github.com/matomo-org/matomo/issues/583 | 37,350,550 | 583 |
[
"matomo-org",
"matomo"
] | Currently when super user login is passed to the UsersManager function accepting a $userLogin parameter, result is not always right.
However results are accurate when the super user token_auth is used.
We should fix implementation so that result is accurate when $userLogin is set to the super user login.
Also we should check that other API methods accepting logins are expected to receive the Super User login.
| API UsersManager.* accepting $userLogin should work well when super user login is passed | https://api.github.com/repos/matomo-org/matomo/issues/582/comments | 1 | 2009-03-03T04:16:53Z | 2014-07-08T09:59:38Z | https://github.com/matomo-org/matomo/issues/582 | 37,350,549 | 582 |
[
"matomo-org",
"matomo"
] | Add a simple widget by default, at the bottom middle column: Piwik Changelog
Make sure that the existing exampleRss widget is easily reusable.
| add widget by default: RSS feed of changelog | https://api.github.com/repos/matomo-org/matomo/issues/581/comments | 1 | 2009-03-03T03:56:57Z | 2014-07-08T09:59:38Z | https://github.com/matomo-org/matomo/issues/581 | 37,350,547 | 581 |
[
"matomo-org",
"matomo"
] | I have a CVS directory in my lang directory (I have checked a full copy into CVS) this makes getAvailableLanguages() read the CVS directory as a language which fails with:
Warning: Piwik_LanguagesManager_API::require(lang/.php) [function.Piwik-LanguagesManager-API-require]: failed to open stream: No such file or directory in C:\data\Callisto\thing\UI\piwik\plugins\LanguagesManager\API.php on line 54
Simple fix:
Screen only for .php files by changing plugins/LanguagesManager/API.php line 33 (version 0.2.31):
FROM:
$languages = glob($path . "_");
TO:
$languages = glob($path . "_.php");
More complex fix:
Filter out directories from the list of results from glob.
| Languages fail if there is a directory in PIWIK_INCLUDE_PATH/lang | https://api.github.com/repos/matomo-org/matomo/issues/580/comments | 1 | 2009-03-03T01:25:05Z | 2014-07-08T09:59:38Z | https://github.com/matomo-org/matomo/issues/580 | 37,350,546 | 580 |
[
"matomo-org",
"matomo"
] | in the [Actions.\* API response](http://piwik.org/demo/index.php?module=API&method=Actions.getActions&idSite=1&period=day&date=yesterday&format=xml&token_auth=anonymous&expanded=1) for most rows distinction between full_url and label can be confusing;
**Spec**
- 'label' should have the value of the page only, excluding directories
- 'full_url' should contain the full path (excluding domain name) to the page
- in the API response, some rows have subtables (eg. /demo/index2, 'demo' will be a row having a subtable linking to the subpage index2). For these entries, full_url should not be set (rather than being 0 at the moment). Also, we should make sure the 'demo/index' fake entry generated for hits on '/demo' have a full_url value of '/demo' and not '/demo/index'.
| API Actions: full_url and url is 0 | https://api.github.com/repos/matomo-org/matomo/issues/579/comments | 1 | 2009-03-02T23:05:41Z | 2014-07-08T09:59:38Z | https://github.com/matomo-org/matomo/issues/579 | 37,350,544 | 579 |
[
"matomo-org",
"matomo"
] | in the Actions API response, it is not clear what the idsubdatatable is, and how the API should be called to request subtables: [example api link](http://piwik.org/demo/index.php?module=API&method=Actions.getActions&idSite=1&period=day&date=yesterday&format=xml&token_auth=anonymous&expanded=1) (with and without expanded=1)
should databaseSubtableId AND/OR idsubdatatable be in the response at all?
| Actions API: clarify idsubdatatable VS databaseSubtableId in API response | https://api.github.com/repos/matomo-org/matomo/issues/578/comments | 2 | 2009-03-02T22:58:41Z | 2014-07-08T09:59:38Z | https://github.com/matomo-org/matomo/issues/578 | 37,350,543 | 578 |
[
"matomo-org",
"matomo"
] | Currently the automatic purge is randomly called 6% of the time. see core/ArchiveProcessing/Day.php line 91.
Instead this script should be automatically called once per day for each archive table.
Records of whether it was called or not should be kept in piwik_option table, eg. "last_auto_purge_archive_blob_2008_01 = timestamp".
| Aautomatic purge should be automatically called once a day on every archive table | https://api.github.com/repos/matomo-org/matomo/issues/577/comments | 1 | 2009-03-02T22:48:46Z | 2014-07-08T09:59:38Z | https://github.com/matomo-org/matomo/issues/577 | 37,350,542 | 577 |
[
"matomo-org",
"matomo"
] | Use case:
- user changes super user password, which regenerates the token_auth
- he forgets to change the token_auth in the crontab script
- the cron tab now doesn't archive any website but there is no feedback to the user
Instead, the cron job should first check to make sure that the user has some permissions to see website data, if not throw error that would be emailed to the user if he specified email in crontab.
| Piwik crontab job should return an error when the token_auth doesn't have any website permission | https://api.github.com/repos/matomo-org/matomo/issues/576/comments | 1 | 2009-03-02T22:42:17Z | 2014-07-08T09:59:37Z | https://github.com/matomo-org/matomo/issues/576 | 37,350,541 | 576 |
[
"matomo-org",
"matomo"
] | For example on piwik.org/demo for 1st of March, the keyword "piwik" appears twice in the report.
This is not due to trailing spaces as the keywords are trimmed (see core/Tracker/Visit.php line 710).
This could be due to encoding issue or other special characters.
| Duplicated keywords in search engine keywords report | https://api.github.com/repos/matomo-org/matomo/issues/575/comments | 3 | 2009-03-02T22:40:08Z | 2014-07-08T09:59:37Z | https://github.com/matomo-org/matomo/issues/575 | 37,350,539 | 575 |
[
"matomo-org",
"matomo"
] | I completely removed piwik, and checked out the svn. The initial configuring of piwik went just fine, and reported success. On the screen where I was presented with a place to log in (the url reads index.php?action=&module=&deleteTables=1) there is an error message that repeats 13 times:
```
Notice: Object of class Zend_Config could not be converted to int in /var/www/vhosts/ammonow.com/httpdocs/stats/core/Config.php on line 186
Backtrace -->
#0 Piwik_ErrorHandler(8, Object of class Zend_Config could not be converted to int, /var/www/vhosts/ammonow.com/httpdocs/stats/core/Config.php, 186, Array ([name] => PluginsInstalled,[value] => Array ([0] => Login,[1] => CoreAdminHome,[2] => UsersManager,[3] => SitesManager,[4] => Installation,[5] => CoreUpdater,[6] => CorePluginsAdmin))) called at [/var/www/vhosts/ammonow.com/httpdocs/stats/core/Config.php:186]
#1 Piwik_Config->__set(PluginsInstalled, Array ([0] => Login,[1] => CoreAdminHome,[2] => UsersManager,[3] => SitesManager,[4] => Installation,[5] => CoreUpdater,[6] => CorePluginsAdmin)) called at [/var/www/vhosts/ammonow.com/httpdocs/stats/core/PluginsManager.php:444]
#2 Piwik_PluginsManager->installPluginIfNecessary(Piwik_CorePluginsAdmin Object ()) called at [/var/www/vhosts/ammonow.com/httpdocs/stats/core/PluginsManager.php:110]
#3 Piwik_PluginsManager->installLoadedPlugins() called at [/var/www/vhosts/ammonow.com/httpdocs/stats/core/FrontController.php:245]
#4 Piwik_FrontController->init() called at [/var/www/vhosts/ammonow.com/httpdocs/stats/index.php:50]
```
Then there is the same error with a longer backtrace:
```
Notice: Object of class Zend_Config could not be converted to int in /var/www/vhosts/ammonow.com/httpdocs/stats/core/Config.php on line 186
Backtrace -->
#0 Piwik_ErrorHandler(8, Object of class Zend_Config could not be converted to int, /var/www/vhosts/ammonow.com/httpdocs/stats/core/Config.php, 186, Array ([name] => PluginsInstalled,[value] => Array ([0] => Login,[1] => CoreAdminHome,[2] => UsersManager,[3] => SitesManager,[4] => Installation,[5] => VisitorInterest))) called at [/var/www/vhosts/ammonow.com/httpdocs/stats/core/Config.php:186]
#1 Piwik_Config->__set(PluginsInstalled, Array ([0] => Login,[1] => CoreAdminHome,[2] => UsersManager,[3] => SitesManager,[4] => Installation,[5] => VisitorInterest)) called at [/var/www/vhosts/ammonow.com/httpdocs/stats/core/PluginsManager.php:444]
#2 Piwik_PluginsManager->installPluginIfNecessary(Piwik_VisitorInterest Object ([] => Array ([0] => Array ([0] => 0,[1] => 0.5),[1] => Array ([0] => 0.5,[1] => 1),[2] => Array ([0] => 1,[1] => 2),[3] => Array ([0] => 2,[1] => 4),[4] => Array ([0] => 4,[1] => 6),[5] => Array ([0] => 6,[1] => 8),[6] => Array ([0] => 8,[1] => 11),[7] => Array ([0] => 11,[1] => 15),[8] => Array ([0] => 15)),[] => Array ([0] => Array ([0] => 1,[1] => 1),[1] => Array ([0] => 2,[1] => 2),[2] => Array ([0] => 3,[1] => 3),[3] => Array ([0] => 4,[1] => 4),[4] => Array ([0] => 5,[1] => 5),[5] => Array ([0] => 6,[1] => 7),[6] => Array ([0] => 8,[1] => 10),[7] => Array ([0] => 11,[1] => 14),[8] => Array ([0] => 15,[1] => 20),[9] => Array ([0] => 20)))) called at [/var/www/vhosts/ammonow.com/httpdocs/stats/core/PluginsManager.php:110]
#3 Piwik_PluginsManager->installLoadedPlugins() called at [/var/www/vhosts/ammonow.com/httpdocs/stats/core/FrontController.php:245]
#4 Piwik_FrontController->init() called at [/var/www/vhosts/ammonow.com/httpdocs/stats/index.php:50]
```
Then more of the first type, and then a few errors about headers already being sent:
```
Warning: Cannot modify header information - headers already sent by (output started at /var/www/vhosts/ammonow.com/httpdocs/stats/libs/Zend/Log/Writer/Stream.php:95) in /var/www/vhosts/ammonow.com/httpdocs/stats/core/View.php on line 109
Backtrace -->
#0 Piwik_ErrorHandler(2, Cannot modify header information - headers already sent by (output started at /var/www/vhosts/ammonow.com/httpdocs/stats/libs/Zend/Log/Writer/Stream.php:95), /var/www/vhosts/ammonow.com/httpdocs/stats/core/View.php, 109, Array ([e] => Exception Object ([] => The plugin '' has not been loaded.,[] => ,[] => 0,[] => /var/www/vhosts/ammonow.com/httpdocs/stats/core/PluginsManager.php,[] => 209,[] => Array ([0] => Array ([file] => /var/www/vhosts/ammonow.com/httpdocs/stats/core/Piwik.php,[line] => 722,[function] => getLoadedPlugin,[class] => Piwik_PluginsManager,[type] => ->,[args] => Array ([0] => )),[1] => Array ([file] => /var/www/vhosts/ammonow.com/httpdocs/stats/core/View.php,[line] => 79,[function] => getCurrentPlugin,[class] => Piwik,[type] => ::,[args] => Array ()),[2] => Array ([file] => /var/www/vhosts/ammonow.com/httpdocs/stats/plugins/Login/Controller.php,[line] => 53,[function] => render,[class] => Piwik_View,[type] => ->,[args] => Array ()),[3] => Array ([function] => login,[class] => Piwik_Login_Controller,[type] => ->,[args] => Array ()),[4] => Array ([file] => /var/www/vhosts/ammonow.com/httpdocs/stats/core/FrontController.php,[line] => 147,[function] => call_user_func_array,[args] => Array ([0] => Array ([0] => Piwik_Login_Controller Object ([] => Login,[] => 2009-03-01,[] => Piwik_Date Object ([] => 1235883600)),[1] => login),[1] => Array ())),[5] => Array ([file] => /var/www/vhosts/ammonow.com/httpdocs/stats/core/Controller.php,[line] => 285,[function] => dispatch,[class] => Piwik_FrontController,[type] => ->,[args] => Array ([0] => Login,[1] => )),[6] => Array ([file] => /var/www/vhosts/ammonow.com/httpdocs/stats/plugins/CoreHome/Controller.php,[line] => 34,[function] => redirectToIndex,[class] => Piwik_Controller,[type] => ->,[args] => Array ([0] => CoreHome,[1] => index)),[7] => Array ([function] => redirectToIndex,[class] => Piwik_CoreHome_Controller,[type] => ->,[args] => Array ()),[8] => Array ([file] => /var/www/vhosts/ammonow.com/httpdocs/stats/core/FrontController.php,[line] => 147,[function] => call_user_func_array,[args] => Array ([0] => Array ([0] => Piwik_CoreHome_Controller Object ([] => CoreHome,[] => 2009-03-01,[] => Piwik_Date Object ([] => 1235883600)),[1] => redirectToIndex),[1] => Array ())),[9] => Array ([file] => /var/www/vhosts/ammonow.com/httpdocs/stats/index.php,[line] => 51,[function] => dispatch,[class] => Piwik_FrontController,[type] => ->,[args] => Array ())))))
#1 header(Content-Type: text/html; charset=utf-8) called at [/var/www/vhosts/ammonow.com/httpdocs/stats/core/View.php:109]
#2 Piwik_View->render() called at [/var/www/vhosts/ammonow.com/httpdocs/stats/plugins/Login/Controller.php:53]
#3 Piwik_Login_Controller->login()
#4 call_user_func_array(Array ([0] => Piwik_Login_Controller Object ([] => Login,[] => 2009-03-01,[] => Piwik_Date Object ([] => 1235883600)),[1] => login), Array ()) called at [/var/www/vhosts/ammonow.com/httpdocs/stats/core/FrontController.php:147]
#5 Piwik_FrontController->dispatch(Login, ) called at [/var/www/vhosts/ammonow.com/httpdocs/stats/core/Controller.php:285]
#6 Piwik_Controller->redirectToIndex(CoreHome, index) called at [/var/www/vhosts/ammonow.com/httpdocs/stats/plugins/CoreHome/Controller.php:34]
#7 Piwik_CoreHome_Controller->redirectToIndex()
#8 call_user_func_array(Array ([0] => Piwik_CoreHome_Controller Object ([] => CoreHome,[] => 2009-03-01,[] => Piwik_Date Object ([] => 1235883600)),[1] => redirectToIndex), Array ()) called at [/var/www/vhosts/ammonow.com/httpdocs/stats/core/FrontController.php:147]
#9 Piwik_FrontController->dispatch() called at [/var/www/vhosts/ammonow.com/httpdocs/stats/index.php:51]
```
I do get the login box at the bottom of those error messages. When I try to log in, I get only those same error messages.
-sh-3.2$ php --version
PHP 5.1.6 (cli) (built: Jul 16 2008 19:53:00)
Copyright (c) 1997-2006 The PHP Group
Zend Engine v2.1.0, Copyright (c) 1998-2006 Zend Technologies
Php is reasonably up to date, but I've never had any experience with this Zend engine, and I notice "Zend" in the error. I'm hesitant to try to upgrade this Zend, since this is on a managed server, but will try if you think it could help. I run piwik 2.28 on another project, but on the same server, with no issues.
Commenting out the offending if statement in Config.php makes everything happy:
# if($this->userConfig->$name != $value)
# {
# $this->configFileUpdated = true;
# }
I hope this information helps, and I am more than happy to try out fixes or give more information. Thanks!
| Object of class Zend_Config could not be converted to int in core/Config.php on line 186 | https://api.github.com/repos/matomo-org/matomo/issues/574/comments | 3 | 2009-03-02T22:37:43Z | 2014-07-08T09:59:37Z | https://github.com/matomo-org/matomo/issues/574 | 37,350,538 | 574 |
[
"matomo-org",
"matomo"
] | The superuser username " cannot be used as of changeset 949. It couldn't really be used before because of a different bug.
This may not cause problems as the username is unlikely to be ", but some other value or plugin or other future configuration may be surprised by the special handling here and assume all characters are safe.
Lines 136 and 216 are the offending statements:
```
136 $value = str_replace('"', """, $value);
216 $value = str_replace(""", '"', $value);
```
Suggestion: Use the PHP built-in functions htmlspecialchars and html_entity_decode instead.
| Changeset 949 may break configuration values | https://api.github.com/repos/matomo-org/matomo/issues/573/comments | 2 | 2009-03-02T15:41:39Z | 2014-07-08T09:59:37Z | https://github.com/matomo-org/matomo/issues/573 | 37,350,537 | 573 |
[
"matomo-org",
"matomo"
] | Piwik provides reports for days, weeks, month and year, but not for custom date ranges.
The mechanism used to process reports for weeks, month and year use a generic code that could be used to generate reports on any custom date range.
List of changes to make this happen:
- the date range should be set in the "date" parameter and not in a new parameter date_range, and "period" parameter would be "range"
- Archiving: when period=range, the Archiving code will test if an archive exists already. If it doesn't, it will look at the most efficient way to process the range: the minimum number of sub date ranges.
- For example, requesting data from Jan 1st to March 15th 2009:
- we can sum jan month + feb + sum of the first 15 days of july? which is 17 archives to select and sum
- but if we minimize the nb of date ranges in the requested range, by doing: jan + feb + day 1st of march + week from 2nd to 8th + week from 9th to 15th, we only select & sum 5 archives which will be a lot more efficient and better user experience.
The archive sum of all sub archives will then be recorded and read as normal.
- UI: period selector will change to use a calendar that allows for date range selector ([example](http://eyecon.ro/datepicker/)). We could add "Date range" after "day, month, year" buttons, when clicked would show 2 calendars.
- UI: maybe it would be nice to show date ranges shortcut, "last 7 days", "last 30 days" somehow ?
- QA: add new integration tests that test with the date range "date=2011-01-01,2011-03-22&period=range"
- Note: none of the plugins code for Archiving, API querying etc. will need to be modified, since all the logic is hidden
Any ideas? Any volunteer to work on this interesting challenge? Please comment :)
| Core: Provide custom date range feature | https://api.github.com/repos/matomo-org/matomo/issues/572/comments | 30 | 2009-02-27T04:02:03Z | 2014-07-08T10:17:38Z | https://github.com/matomo-org/matomo/issues/572 | 37,350,534 | 572 |
[
"matomo-org",
"matomo"
] | In addition to being able to login as root password=1234
I can also login using user root password=81dc9bdb52d04dc20036dbd8313ed055
This can have serious consequences if anyone can find a way to print out config/config.ini.php
There may be other situations where an attacker knows the MD5 hash (or other hash should you change digests) but not the password.
| Filesystem access equals root access | https://api.github.com/repos/matomo-org/matomo/issues/571/comments | 3 | 2009-02-26T20:51:17Z | 2014-07-08T09:59:36Z | https://github.com/matomo-org/matomo/issues/571 | 37,350,533 | 571 |
[
"matomo-org",
"matomo"
] | I want to use a unix-domain socket that was different than the output of `mysql_config --socket` on the machine where PHP was installed.
```
localhost;unix_socket=/home/myusername/mysql/socket
```
Install proceeds otherwise uneventfully, and then bombs out when I first visit it with a complaint:
```
SQLSTATE[[2002](HY000]) Can't connect to local MySQL server through socket '/var/run/mysqld/mysqld.sock' (2)
```
| Unix domain sockets don't work | https://api.github.com/repos/matomo-org/matomo/issues/570/comments | 5 | 2009-02-26T16:35:03Z | 2014-07-08T09:59:36Z | https://github.com/matomo-org/matomo/issues/570 | 37,350,532 | 570 |
[
"matomo-org",
"matomo"
] | I had a customer using IE6 today reporting javascript errors in our shop when he tries to check out.
I fired up Internet Explorer 6 and tried it myself and can reproduce the error. However, this is most likely due to Google Analytics (which currently runs side-by-side to Piwik). We have a ssl proxy for secure checkout and as the domain is different to the regular shop domain, links to the ssl area are wrapped into 'pageTracker._link()' in order not to loose the customer and miss the sale in the Google Analytics conversion.
The Microsoft Debugger claims an error in _pk_is_site_hostname(), the line in question is
```
if ( alias.substr(0, 2) == "*." ) {
```
At least it is the line highlighted by the debugger. I can't reproduce this in Firefox nor Safari, it only fails in Internet Explorer.
| Javascript Error in IE6 on SSL-Proxy and Google Tracking Code | https://api.github.com/repos/matomo-org/matomo/issues/569/comments | 4 | 2009-02-26T15:32:11Z | 2014-07-08T09:59:36Z | https://github.com/matomo-org/matomo/issues/569 | 37,350,531 | 569 |
[
"matomo-org",
"matomo"
] | Since an svn update this morning (to revision 919) I'm seeing the following warning shown everywhere.
```
Warning: vsprintf() [function.vsprintf]: Too few arguments in /mnt/local/home/blogbound/piwik.blogbound.com/core/Translate.php on line 148
Backtrace -->#0 Piwik_ErrorHandler(2, vsprintf() [function.vsprintf]: Too few arguments, /mnt/local/home/blogbound/piwik.blogbound.com/core/Translate.php, 148, Array ([index] => CoreHome_LocalizedDateFormat,[args] => Array ())) called at [(null):0]
#1 vsprintf(%A %d %B %Y, Array ()) called at [/mnt/local/home/blogbound/piwik.blogbound.com/core/Translate.php:148]
#2 Piwik_Translate(CoreHome_LocalizedDateFormat) called at [/mnt/local/home/blogbound/piwik.blogbound.com/core/Controller.php:218]
#3 Piwik_Controller->setGeneralVariablesView(Piwik_View Object ([] => CoreHome/templates/index.tpl,[] => Piwik_Smarty Object ([template_dir] => Array ([0] => plugins,[1] => themes/default,[2] => themes),[compile_dir] => tmp/templates_c,[config_dir] => configs,[plugins_dir] => Array ([0] => libs/Smarty/plugins,[1] => core/SmartyPlugins),[debugging] => 1,[error_reporting] => 6143,[debug_tpl] => ,[debugging_ctrl] => NONE,[compile_check] => 1,[force_compile] => ,[caching] => 0,[cache_dir] => tmp/cache,[cache_lifetime] => 3600,[cache_modified_check] => ,[php_handling] => 0,[security] => ,[secure_dir] => Array (),[security_settings] => Array ([PHP_HANDLING] => ,[IF_FUNCS] => Array ([0] => array,[1] => list,[2] => isset,[3] => empty,[4] => count,[5] => sizeof,[6] => in_array,[7] => is_array,[8] => true,[9] => false,[10] => null),[INCLUDE_ANY] => ,[PHP_TAGS] => ,[MODIFIER_FUNCS] => Array ([0] => count),[ALLOW_CONSTANTS] => ),[trusted_dir] => Array (),[left_delimiter] => {,[right_delimiter] => },[request_vars_order] => EGPCS,[request_use_auto_globals] => 1,[compile_id] => ,[use_sub_dirs] => ,[default_modifiers] => Array (),[default_resource_type] => file,[cache_handler_func] => ,[autoload_filters] => Array (),[config_overwrite] => 1,[config_booleanize] => 1,[config_read_hidden] => ,[config_fix_newlines] => 1,[default_template_handler_func] => ,[compiler_file] => Smarty_Compiler.class.php,[compiler_class] => Smarty_Compiler,[config_class] => Config_File,[_tpl_vars] => Array ([SCRIPT_NAME] => /index.php,[piwikUrl] => http://piwik.blogbound.com/),[_smarty_vars] => ,[_sections] => Array (),[_foreach] => Array (),[_tag_stack] => Array (),[_conf_obj] => ,[_config] => Array ([0] => Array ([vars] => Array (),[files] => Array ())),[_smarty_md5] => f8d698aea36fcbead2b9d5359ffca76f,[_version] => 2.6.22,[_inclusion_depth] => 0,[_compile_id] => ,[_smarty_debug_id] => SMARTY_DEBUG,[_smarty_debug_info] => Array (),[_cache_info] => Array (),[_file_perms] => 420,[_dir_perms] => 505,[_reg_objects] => Array (),[_plugins] => Array ([modifier] => Array (),[function] => Array (),[block] => Array (),[compiler] => Array (),[prefilter] => Array (),[postfilter] => Array (),[outputfilter] => Array ([trimwhitespace] => Array ([0] => smarty_outputfilter_trimwhitespace,[1] => ,[2] => ,[3] => 1,[4] => 1)),[resource] => Array (),[insert] => Array ()),[_cache_serials] => Array (),[_cache_include] => ,[_cache_including] => ),[] => Array ())) called at [/mnt/local/home/blogbound/piwik.blogbound.com/plugins/CoreHome/Controller.php:39]
#4 Piwik_CoreHome_Controller->setGeneralVariablesView(Piwik_View Object ([] => CoreHome/templates/index.tpl,[] => Piwik_Smarty Object ([template_dir] => Array ([0] => plugins,[1] => themes/default,[2] => themes),[compile_dir] => tmp/templates_c,[config_dir] => configs,[plugins_dir] => Array ([0] => libs/Smarty/plugins,[1] => core/SmartyPlugins),[debugging] => 1,[error_reporting] => 6143,[debug_tpl] => ,[debugging_ctrl] => NONE,[compile_check] => 1,[force_compile] => ,[caching] => 0,[cache_dir] => tmp/cache,[cache_lifetime] => 3600,[cache_modified_check] => ,[php_handling] => 0,[security] => ,[secure_dir] => Array (),[security_settings] => Array ([PHP_HANDLING] => ,[IF_FUNCS] => Array ([0] => array,[1] => list,[2] => isset,[3] => empty,[4] => count,[5] => sizeof,[6] => in_array,[7] => is_array,[8] => true,[9] => false,[10] => null),[INCLUDE_ANY] => ,[PHP_TAGS] => ,[MODIFIER_FUNCS] => Array ([0] => count),[ALLOW_CONSTANTS] => ),[trusted_dir] => Array (),[left_delimiter] => {,[right_delimiter] => },[request_vars_order] => EGPCS,[request_use_auto_globals] => 1,[compile_id] => ,[use_sub_dirs] => ,[default_modifiers] => Array (),[default_resource_type] => file,[cache_handler_func] => ,[autoload_filters] => Array (),[config_overwrite] => 1,[config_booleanize] => 1,[config_read_hidden] => ,[config_fix_newlines] => 1,[default_template_handler_func] => ,[compiler_file] => Smarty_Compiler.class.php,[compiler_class] => Smarty_Compiler,[config_class] => Config_File,[_tpl_vars] => Array ([SCRIPT_NAME] => /index.php,[piwikUrl] => http://piwik.blogbound.com/),[_smarty_vars] => ,[_sections] => Array (),[_foreach] => Array (),[_tag_stack] => Array (),[_conf_obj] => ,[_config] => Array ([0] => Array ([vars] => Array (),[files] => Array ())),[_smarty_md5] => f8d698aea36fcbead2b9d5359ffca76f,[_version] => 2.6.22,[_inclusion_depth] => 0,[_compile_id] => ,[_smarty_debug_id] => SMARTY_DEBUG,[_smarty_debug_info] => Array (),[_cache_info] => Array (),[_file_perms] => 420,[_dir_perms] => 505,[_reg_objects] => Array (),[_plugins] => Array ([modifier] => Array (),[function] => Array (),[block] => Array (),[compiler] => Array (),[prefilter] => Array (),[postfilter] => Array (),[outputfilter] => Array ([trimwhitespace] => Array ([0] => smarty_outputfilter_trimwhitespace,[1] => ,[2] => ,[3] => 1,[4] => 1)),[resource] => Array (),[insert] => Array ()),[_cache_serials] => Array (),[_cache_include] => ,[_cache_including] => ),[] => Array ())) called at [/mnt/local/home/blogbound/piwik.blogbound.com/plugins/CoreHome/Controller.php:57]
#5 Piwik_CoreHome_Controller->getDefaultIndexView() called at [/mnt/local/home/blogbound/piwik.blogbound.com/plugins/CoreHome/Controller.php:64]
#6 Piwik_CoreHome_Controller->index() called at [(null):0]
#7 call_user_func_array(Array ([0] => Piwik_CoreHome_Controller Object ([] => CoreHome,[] => 2009-02-25,[] => Piwik_Date Object ([] => 1235548800)),[1] => index), Array ()) called at [/mnt/local/home/blogbound/piwik.blogbound.com/core/FrontController.php:147]
#8 Piwik_FrontController->dispatch() called at [/mnt/local/home/blogbound/piwik.blogbound.com/index.php:50]
```
| Warning: vsprintf() [function.vsprintf]: Too few arguments | https://api.github.com/repos/matomo-org/matomo/issues/568/comments | 1 | 2009-02-26T11:54:24Z | 2014-07-08T09:59:36Z | https://github.com/matomo-org/matomo/issues/568 | 37,350,530 | 568 |
[
"matomo-org",
"matomo"
] | Currently, getIp() only returns a single client IP address, looking at HTTP_CLIENT_IP, HTTP_X_FORWARD_FOR (XFF), and REMOTE_ADDR (in that order).
It's possible that getIp() returns a private IP address. We should make it configurable to return the first "public" IP address which can be geolocated, unless you want the current behavior (e.g., #1054 intranet subnet identification).
These are some private IP address ranges:
- 10.0.0.0 - 10.255.255.255
- 172.16.0.0 - 172.31.255.255
- 192.168.0.0 - 192.168.255.255
Another consideration is XFF spoofing (increasing popular with various browser addons). Perhaps we should log both the result from getIp() and REMOTE_ADDR?
(Above two scenarios may or may not involve a reverse proxy.)
Another consideration is #1553 ... the IP address from PiwikTracker should override any logic here.
| Piwik_Common::getIP() - filter for public IP or from trusted proxy | https://api.github.com/repos/matomo-org/matomo/issues/567/comments | 14 | 2009-02-26T01:30:53Z | 2014-07-08T10:16:41Z | https://github.com/matomo-org/matomo/issues/567 | 37,350,528 | 567 |
[
"matomo-org",
"matomo"
] | Reference: http://www.prototypejs.org/api/array
Patch attached
Keywords: piwik.js
| Broken Outlinks - Prototype JS breaks use of "for" in iterating over Array contents | https://api.github.com/repos/matomo-org/matomo/issues/566/comments | 7 | 2009-02-25T15:02:05Z | 2014-07-08T09:59:38Z | https://github.com/matomo-org/matomo/issues/566 | 37,350,527 | 566 |
[
"matomo-org",
"matomo"
] | After i discovered piwik i googled and couldnt find any turkish material for it . So i started to translate it to turkish on UTF-8 format and i finished almost %80 .Soon all going to finish . So is it possible to send and share it with new version .As a webmaster i can also open piwik turkish web page and spread the piwik of better in Turkey.
I m looking forwad your respond thank you already ..
| Turkish Translation | https://api.github.com/repos/matomo-org/matomo/issues/565/comments | 1 | 2009-02-25T12:30:03Z | 2014-08-03T11:22:23Z | https://github.com/matomo-org/matomo/issues/565 | 37,350,526 | 565 |
[
"matomo-org",
"matomo"
] | mod_security block the stats update when title contain <? ?> characters
Here is rules provides by default (Online those who have a incidence on Piwik.. because they have some many other rules)
[+0100](23/Feb/2009:16:02:54) [Access denied with code 501 (phase 2). Pattern match "(?:(?:\b(?:f(?:tp_(?:nb_)?f?(?:ge|pu)t|get(?:s?s|c)|scanf|write|open|read)|gz(?:(?:encod|writ)e|compress|open|read)|s(?:ession_start|candir)|read(?:(?:gz)?file|dir)|move_uploaded_file|(?:proc_|bz)open)|\$_(?:(?:pos|ge)t|session))\b|<\?(?!xml))" at ARGS:title. [id "950013"](test.domain.be/sid#9345328][rid#9601f48][/piwik/piwik.php][1]) ["PHP Injection Attack. Matched signature <<?>"](msg) ["CRITICAL"](severity)
Keywords: mod_security
| mod_security issue | https://api.github.com/repos/matomo-org/matomo/issues/564/comments | 7 | 2009-02-25T09:10:06Z | 2014-07-08T10:03:06Z | https://github.com/matomo-org/matomo/issues/564 | 37,350,525 | 564 |
[
"matomo-org",
"matomo"
] | From [forum](http://forum.piwik.org/index.php?showtopic=238), if the lang directory contains a _vti directory, an error occurs.
This can also happen if you test Piwik from your svn working directory, and your editor leaves behind files, such as "lang/en.php~".
```
Index: plugins/LanguagesManager/API.php
===================================================================
--- plugins/LanguagesManager/API.php (revision 906)
+++ plugins/LanguagesManager/API.php (working copy)
@@ -30,7 +30,7 @@
return self::$languageNames;
}
$path = PIWIK_INCLUDE_PATH . "/lang/";
- $languages = glob($path . "*");
+ $languages = glob($path . "*.php");
$pathLength = strlen($path);
$languageNames = array();
foreach($languages as $language)
```
| Don't glob() invalid files in the lang directory | https://api.github.com/repos/matomo-org/matomo/issues/563/comments | 1 | 2009-02-22T07:36:13Z | 2014-07-08T09:59:35Z | https://github.com/matomo-org/matomo/issues/563 | 37,350,524 | 563 |
[
"matomo-org",
"matomo"
] | It would be nice if Piwik implemented Form Analytics to let us know more information about how Forms are filled in, abandoned, and how can Piwik users improve their web form conversion rates.
**Form Analytics Proposal, by Adrian**
```
Here is what I was thinking about form abandonment/form analytics. The reason Form Abandonment is it would hook into your other form metrics you were interested in. How and why people do not finish filling in a form, what are pain points. It will help people make better form as and it is a feature, that is something which would be unique to an open source analytics.
Basically, I thought we could create a new report which would use a version "Virtual Pageviews" which could be pivot to a new measurement called "Form Actions". It should be done without increasing pageview counts. It would look something like this:
piwikTracker.trackFormView('Form Name', 'Form Field', 'Time Spent')
A user would add it to their code to attach to their form fields, when they build a form. It would then allow a us to build a couple of new reports under goals:
Conversion rate for forms. It would look at the number of forms completed vs those attempted (loaded).
A drop rate is the number of visitors who started a form but didn't submit it. A forms version of Bounce rate.
Completion time is the average time taken for visitors to complete the form over the period, and specific questions. It might tell a user the pain parts of a form.
Blank field rate tells you what percentage of fields on the form are typically left empty.
The leader in the field is Clicktales, you can read about their Form Analytics here:
http://www.clicktale.com/product/form_analytics
http://blog.clicktale.com/2011/05/30/nine-reasons-your-customers-arent-converting-and-tools-to-find-out-why/
Here I found some javascript out there form people trying to make GA do things with events.
time spent: http://stackoverflow.com/questions/8463280/clicktale-like-implementation-on-google-analytics
sample event tracking with GA
http://www.distilled.net/blog/conversion-rate-optimization/using-jquery-and-google-analytics-events-to-track-form-abandonment/
Actual code:
-------------------
//<script type="text/javascript" src="/jquery/purl.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.1/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
var currentPage = jQuery.url.attr("path");
$(':input').blur(function () {
if($(this).val().length > 0){
pageTracker._trackEvent("Form: " + currentPage, "input_exit", $(this).attr('name'));
}
});
});
</script>
Example form:
<form id="my-node-form" name="my-node-form">
<select name="field_category" id="edit-field-category">
...
</select>
<select name="field_color" id="edit-field-color">
...
</select>
<select name="field-city" id="edit-field-city">
...
</select>
<input type="text" id="edit-field-keywords" name="field_keywords[und]" value="">
</form>
------------
```
| Web Form Analytics - Form usage, abandoned, submitted | https://api.github.com/repos/matomo-org/matomo/issues/562/comments | 9 | 2009-02-20T20:03:34Z | 2024-09-13T09:13:16Z | https://github.com/matomo-org/matomo/issues/562 | 37,350,523 | 562 |
[
"matomo-org",
"matomo"
] | Using this query string, I am trying to get back the full expanded datatable in the php array. CorpspediaActions.getActionsFilteredByUser is an extension of Actions that does its own archive processing based upon the original methods (essentially grouping by a custom user_id field).
module=API&method=CorpspediaActions.getActionsFilteredByUser&token_auth=bea1c80a75f6bc12582459358d79a9fc&date=last10&period=day&idsite=1&expanded=true&format=php&idSite=1
I expected the "expanded" property to cause the php array to come back full loaded. But it was not, using a debugger, I can verify that the table and subtables ARE being built, but it is the rendering process that is not including the subtables in the final response.
The problem appears to be caused by the fact that the Piwik_API_Request builds a custon "request" array that it passes to the Piwik_API_ResponseBuilder (who eventually will handle the rendering). The problem is that in the constructor for Piwik_DataTable_Renderer, it doesn't have access to the custom request array and therefore does not find the expanded parm that was set to "true".
My gut tells me that we need to find a way to propagate the custom request array to the Renderer so that it can use that array (when available) instead of the plain $_REQUEST array (which is the default).
Keywords: Datatable renderer
| Piwik_DataTable_Renderer doesn't use the Piwik_API_Request $request parms | https://api.github.com/repos/matomo-org/matomo/issues/561/comments | 3 | 2009-02-20T16:43:42Z | 2014-07-08T09:59:35Z | https://github.com/matomo-org/matomo/issues/561 | 37,350,522 | 561 |
[
"matomo-org",
"matomo"
] | The following two referrers were not recognized by Piwik as a search engine:
http://www.google.com.kw/search?hl=en&q=hallo+welt
http://www.google.com.by/search?hl=ru&q=welt
Attached is a patch against core/DataFiles/SearchEngines.php
| New search engines | https://api.github.com/repos/matomo-org/matomo/issues/560/comments | 1 | 2009-02-19T04:56:42Z | 2014-07-08T09:59:34Z | https://github.com/matomo-org/matomo/issues/560 | 37,350,521 | 560 |
[
"matomo-org",
"matomo"
] | In the list of external website I found some referes that are actually search engines. How could the added to the list of seach engines?
These are:
home.meinestadt.de
http://home.meinestadt.de/dresden/suche?words=Hygienemuseum/Kindermuseum
http://home.meinestadt.de/dresden/suche?words=remmidemmi
http://home.meinestadt.de/radebeul/suche?words=hallenbad&iwc=1
http://home.meinestadt.de/pirna/suche?words=Geipeltbad
suche.aolsvc.de
http://suche.aolsvc.de/aol/search?invocationType=topsearchbox.webhome&query=wuerzburger%20strasse&rp=
http://suche.aolsvc.de/aol/search?invocationType=topsearchbox.search&query=babyschwimmen%20dresden&rp=lang_de
http://suche.aolsvc.de/aol/search?invocationType=topsearchbox.search&query=spielplatz%20f%C3%BCr%20kinder%20in%20dresden&rp=
Keywords: search engines
| recognize more search engines | https://api.github.com/repos/matomo-org/matomo/issues/559/comments | 1 | 2009-02-18T21:49:01Z | 2014-07-08T09:59:34Z | https://github.com/matomo-org/matomo/issues/559 | 37,350,520 | 559 |
[
"matomo-org",
"matomo"
] | ## ActiveProvider
The ActiveProvider plugin enhances the Provider report by using the cross-vendor supported Public Suffix list -- hosted by the Mozilla Foundation at http://publicsuffix.org/ -- to more accurately detect second and third level domains for a given top level domain.
The core Provider plugin does not recognize many public second and third level domains. For example, let's say, you get a visit from $customer.$provider.co.uk. This is correctly recognized as $provider. But if you get a visit from $customer.$provider.edu.hk, it is recognized as edu.hk, not as $provider.
### Performance
- added memory footprint approx. 960K
- execution overhead (including load time) approx. 50ms on an (ancient) Athlon 1.4 GHz processor (test box), without APC
### Requirements
- Piwik 0.5.5 (or above)
### To install
- Extract the attached .zip file in the plugins folder.
- Activate the plugin from the Settings | Plugins tab.
### For support
- Send me a tweet [@vipsoft](http://twitter.com/vipsoft)
- DO NOT CREATE A NEW TICKET HERE
Keywords: third-party-plugin
| ActiveProvider plugin: Enhanced Provider Report uses Public Suffix List for second and third level domains | https://api.github.com/repos/matomo-org/matomo/issues/558/comments | 9 | 2009-02-18T08:34:26Z | 2014-08-03T11:26:00Z | https://github.com/matomo-org/matomo/issues/558 | 37,350,518 | 558 |
[
"matomo-org",
"matomo"
] | From discussion in http://forum.piwik.org/index.php?showtopic=217
Depends on: #409
| Duplicate 1st party cookie | https://api.github.com/repos/matomo-org/matomo/issues/557/comments | 3 | 2009-02-18T03:50:20Z | 2014-07-08T10:03:00Z | https://github.com/matomo-org/matomo/issues/557 | 37,350,517 | 557 |
[
"matomo-org",
"matomo"
] | The Actions > Pages report is most of the time based on URLs. When the user specifies a piwik_action_name, the report is based on this custom action name; Hopefully when #530 is implemented, users would only customize this new report "Actions by title" and the current "Actions by URL" report would only contain URL structures that map to real pages.
In this case it would be possible to link each entry to the real page. Piwik users need to have this easy access to their pages to visualize what "index.php?id=2" refers to.
See also:
- #41 : piwik users have an easy way to keep URLs clean.
- #530
- we also have to make sure URLs cannot be overridden or "faked" (appart from excluding url parameters, or if the user specifically override it in the JS using`
piwik.setUrl`)
| Add a link to the URL in the Actions > Pages report. | https://api.github.com/repos/matomo-org/matomo/issues/556/comments | 3 | 2009-02-17T23:14:55Z | 2014-07-08T10:02:37Z | https://github.com/matomo-org/matomo/issues/556 | 37,350,516 | 556 |
[
"matomo-org",
"matomo"
] | In the dashboard, currently the icons to show the "goal table" and the "advanced table" are shown; however when clicked, the table tries to display 5+ columns but there is not enough space, hence dashboard looks bad.
- disable icon for "advanced" and "goal" view in dashboard
- make sure all core widgets only have two columns. For example, the Actions widget should only show two columns; it currently shows "label, pageviews, unique pageviews" but could be "label, pageviews"
Optional: a link "view full report" could be displayed at the bottom of the widget, the link would open in ajax the report containing this widget; this requires:
- widget to know which report they appear on
- set the anchor the right widget in the report, in case the widget appears below the fold
| UI: Widgets are too wide in dashboard:"goals" and "advanced" table view should be disabled in the dashboard | https://api.github.com/repos/matomo-org/matomo/issues/555/comments | 13 | 2009-02-17T23:06:23Z | 2014-07-08T09:59:34Z | https://github.com/matomo-org/matomo/issues/555 | 37,350,515 | 555 |
[
"matomo-org",
"matomo"
] | Users with a "view" permission should see the table with the website information and the "Show Javascript" link, the same way "admin" users currently see the table.
For users with "view", the website table wouldn't be editable.
see also #526
| users with "view" access should see the link to display the javascript code for their sites | https://api.github.com/repos/matomo-org/matomo/issues/554/comments | 9 | 2009-02-12T20:49:41Z | 2014-07-08T10:16:40Z | https://github.com/matomo-org/matomo/issues/554 | 37,350,513 | 554 |
[
"matomo-org",
"matomo"
] | Try to see stats for now ( today ) in 0.2.29 but is return no stats. In 0.2.28 work fine. you can see stats for now ( today )
| Can't see stats for now ( today ) | https://api.github.com/repos/matomo-org/matomo/issues/553/comments | 4 | 2009-02-12T20:09:41Z | 2014-07-08T09:59:33Z | https://github.com/matomo-org/matomo/issues/553 | 37,350,512 | 553 |
[
"matomo-org",
"matomo"
] | At present, Piwik assumes the browser language is a two letter code, following the limitation of the HTTP/1.1 spec which refers to the alpha-2 codes from ISO 639.
We should handle locale specific translations. (Also, we should keep in mind that alpha-3 codes are potentially valid.)
For example, lang/tw.php is currently misnamed ... "tw" is allocated to the Twi language, not Taiwanese. This should be renamed to lang/zh-TW.php (or lang/zh_tw.php or similar). Thus, lang/zh.php might be a "generic", Traditional Chinese translation, while lang/zh-CN.php might be a Simplified Chinese translation.
| Locale specific translations | https://api.github.com/repos/matomo-org/matomo/issues/552/comments | 2 | 2009-02-12T19:17:54Z | 2014-07-08T09:59:33Z | https://github.com/matomo-org/matomo/issues/552 | 37,350,511 | 552 |
[
"matomo-org",
"matomo"
] | If you use a different Login plug-in (for instance HttpAuthLogin), you'll notice that the "logout" link on the frontpage doesn't call the new plug-in, but still calls the old (default) Login plug-in
| The "logout" action on the frontpage (upperright hand corner) is hardlinked to the "Login" plugin… | https://api.github.com/repos/matomo-org/matomo/issues/551/comments | 6 | 2009-02-12T12:27:39Z | 2014-07-08T09:59:33Z | https://github.com/matomo-org/matomo/issues/551 | 37,350,510 | 551 |
[
"matomo-org",
"matomo"
] | I try to show this widget with ssl:
index.php?module=Widgetize&action=iframe&moduleToWidgetize=VisitsSummary&actionToWidgetize=getLastVisitsGraph
I get a gray message. same message like if you run piwik.org/demo under ssl.
That happens only in IE. all the other browsers are happy with this.
That is the only issue that holds us from releasing piwik to our users in production.
Can someone help? thanks
Keywords: SSL,IE,widget
| widget + IE + ssl does not go together | https://api.github.com/repos/matomo-org/matomo/issues/550/comments | 17 | 2009-02-12T11:02:31Z | 2014-07-08T10:00:56Z | https://github.com/matomo-org/matomo/issues/550 | 37,350,509 | 550 |
[
"matomo-org",
"matomo"
] | With the new updated piwik.js it seems as if it is much harder to be able to change the class for which it tracks as download/outlink/etc
for ex.
old piwik.js had
if( source.className == "piwik_download" )
_pk_link_type = 'download';
and thus making it easier to change the class name to be linked to download tracking as I would change "piwik_download" to "myDownloadclass" etc as I had a standard class format for certain links that I wanted to track as download:
var _pk_class = new RegExp('(?:^| )piwik_(download|link)(?: |$)');
var _pk_download = new RegExp('\.(' + _pk_download_extensions + ')$', 'i');
''if (_pk_link_type == 'link')
_pk_not_site_hostname = 1;
else if (!_pk_link_type)
_pk_link_type = (_pk_download.test(source.href) ? 'download' : 'link');''
Now with how the structure changed looks like I need to add a new statement to declare _pk_class to "myDownloadClass".
Not sure if this was easy to understand and its not a bug fix but maybe an enhancement for future release where the user can either change the piwik download/link tracking with either changing in the .js or the standard adding piwik_download class to the website itself.
Maybe set the default of choosing the class to "piwik_download" so for users that don't modify the .js it will not affect them.
As of now I am running my old piwik.js with 0.2.29 and all is working well still but once there are updates to the .js maybe this could be added as a new feature
Thanks,
Tom
| add the ability to set the download/outlink tracking class (overriding piwik_download/piwik_link). | https://api.github.com/repos/matomo-org/matomo/issues/549/comments | 2 | 2009-02-11T21:09:02Z | 2014-07-08T10:17:46Z | https://github.com/matomo-org/matomo/issues/549 | 37,350,508 | 549 |
[
"matomo-org",
"matomo"
] | Hi
I am using firefox 3 on ubuntu 8.10 64 bit. I am finding that when clicking menu items like Goals -> overview, the first time i click the link, i get results saying 0 conversions. If i then click the same link again i get the results. This happens a lot on most of the menu items.
| have to click menu items twice to get correct results to display | https://api.github.com/repos/matomo-org/matomo/issues/548/comments | 10 | 2009-02-10T16:53:36Z | 2014-07-08T09:59:32Z | https://github.com/matomo-org/matomo/issues/548 | 37,350,507 | 548 |
[
"matomo-org",
"matomo"
] | Main feature that I would like to see added is the ability to parse apache log files at predetermined intervals. From the log files then display data such as errors, redirects and others that might otherwise be missed out on.
Keywords: outofscope
| Parse log files | https://api.github.com/repos/matomo-org/matomo/issues/547/comments | 1 | 2009-02-10T02:28:52Z | 2014-08-03T11:30:03Z | https://github.com/matomo-org/matomo/issues/547 | 37,350,506 | 547 |
[
"matomo-org",
"matomo"
] | Currently we can enable and disable plugin. When a plugin is disabled, we should also show a link to "uninstall" the plugin:
- ask for confirmation: "Do you want to uninstall X?"
- call uninstall() method on the plugin class
- delete the files plugin/X/*
| Plugins: add link to uninstall a plugin | https://api.github.com/repos/matomo-org/matomo/issues/546/comments | 16 | 2009-02-09T03:54:16Z | 2014-07-08T10:11:15Z | https://github.com/matomo-org/matomo/issues/546 | 37,350,505 | 546 |
[
"matomo-org",
"matomo"
] | For browsers without Flash support, fallback to server side generated charts. Also a requirement for PDF export.
Consider:
- JpGraph
- pchart.sourceforge.net
- ...
| Non-Flash charting as a fallback | https://api.github.com/repos/matomo-org/matomo/issues/545/comments | 0 | 2009-02-08T23:59:54Z | 2014-07-08T10:01:06Z | https://github.com/matomo-org/matomo/issues/545 | 37,350,504 | 545 |
[
"matomo-org",
"matomo"
] | I cannot export data from Actions -> Pages like you can with the other action items. The + sign isnt there to export.
Also, I guess if you have too much page data it will group the rest of it into "Others" but cannot expand this section. This is the most important information for me to be able to see the pages and count of these pages and be able to export this data as well.
Thanks,
Tom
| Unable to export/view action -> pages data | https://api.github.com/repos/matomo-org/matomo/issues/544/comments | 1 | 2009-02-04T23:38:07Z | 2014-07-08T09:59:31Z | https://github.com/matomo-org/matomo/issues/544 | 37,350,503 | 544 |
[
"matomo-org",
"matomo"
] | No real performance improvement, other than to boast we're using the smallest possible gif for the 1x1 (pixel) transparent image.
Ref: http://www.perlmonks.org/?node_id=7974 (World's Smallest Gif)
| Smallest transparent gif | https://api.github.com/repos/matomo-org/matomo/issues/543/comments | 6 | 2009-02-04T22:31:08Z | 2014-07-08T09:59:31Z | https://github.com/matomo-org/matomo/issues/543 | 37,350,502 | 543 |
[
"matomo-org",
"matomo"
] | Last few days I've been in contact with someone who was using MediaWiki's Piwik Integration extension, of which I am the author. That extension makes use of the **widgetize plugin**, and it'd be great if a **message** appeared saying flash is needed to see the graphs (only if flash isn't installed).
Keywords: flash, message
| Warning if flash isn't installed | https://api.github.com/repos/matomo-org/matomo/issues/542/comments | 1 | 2009-02-03T15:45:54Z | 2014-07-08T09:59:31Z | https://github.com/matomo-org/matomo/issues/542 | 37,350,501 | 542 |
[
"matomo-org",
"matomo"
] | "I'm very interested in Piwik, .... But, the big thing holding us back now is pronouncing the name. Can you give me guidance?"
We should have a MP3 for download "How to pronunce Piwik?"
| How to pronounce Piwik? | https://api.github.com/repos/matomo-org/matomo/issues/541/comments | 6 | 2009-02-03T04:10:10Z | 2018-05-11T12:32:01Z | https://github.com/matomo-org/matomo/issues/541 | 37,350,500 | 541 |
[
"matomo-org",
"matomo"
] | Plugins developers good practise involves writing and running unit tests. To do so, Piwik plugins developers should write unit tests using the existing testing framework in place in Piwik.
The objective is to update the piwik/tests/\* code so that all tests in plugins/_/tests/_.php is picked up by the testing framework.
Two requirements:
- going to plugins/*/tests/example.php should run the unit test directly
- going to tests/all_tests.php and the tests in plugins should be automatically ran
| Plugins could define unit tests in plugins/PLUGIN/tests | https://api.github.com/repos/matomo-org/matomo/issues/540/comments | 1 | 2009-02-03T02:49:32Z | 2014-07-08T09:59:31Z | https://github.com/matomo-org/matomo/issues/540 | 37,350,499 | 540 |
[
"matomo-org",
"matomo"
] | Currently under Visitors > Frequency and Loyalty, this report is hard to read and analyze.
Instead it should be easier and show more clear New VS Returning metrics.
| Improve the New Vs Returning report | https://api.github.com/repos/matomo-org/matomo/issues/539/comments | 1 | 2009-02-03T02:44:11Z | 2019-12-16T21:15:12Z | https://github.com/matomo-org/matomo/issues/539 | 37,350,498 | 539 |
[
"matomo-org",
"matomo"
] | Currently when changing the website, the date or the period, Piwik will reload the whole page, which is long and slow.
Once we do #103 , we can call a JS function when changing the state. This JS function would set the right state in the URL fragment and the page would be reloaded with the right content.
This is tighyly coupled to #103 and requires significant testing or all UI elements.
| When changing the state (date, website, period) Piwik should load the new data in Ajax | https://api.github.com/repos/matomo-org/matomo/issues/538/comments | 1 | 2009-02-03T02:14:46Z | 2014-07-08T09:59:31Z | https://github.com/matomo-org/matomo/issues/538 | 37,350,497 | 538 |
[
"matomo-org",
"matomo"
] | in the UI, every time we mention "bounce count" (number of visits that left the website after one page) should instead be displayed as a percentage = bounce_count / nb_visits = "bounce rate".
It also applies to "X returning visit has bounced (left the site after one page)"
| Bounce count should be "bounce rate" | https://api.github.com/repos/matomo-org/matomo/issues/537/comments | 1 | 2009-02-03T01:44:23Z | 2014-07-08T09:59:31Z | https://github.com/matomo-org/matomo/issues/537 | 37,350,496 | 537 |
[
"matomo-org",
"matomo"
] | - Loyalty: M people visited N times
See
- [Recency Frequency Monetary](http://en.wikipedia.org/wiki/RFM)
- [I Got No Ecommerce. How Do I Measure Success?](http://www.kaushik.net/avinash/2007/07/i-got-no-ecommerce-how-do-i-measure-success.html)
We probably need to keep track of the count of visits for each visitor in a new table, to be able to tell this stat on more than 1 day range.
| Add Loyalty report "Visitors who visited the website 1 time, 2 times, etc." | https://api.github.com/repos/matomo-org/matomo/issues/536/comments | 8 | 2009-02-03T01:35:03Z | 2014-07-08T10:05:51Z | https://github.com/matomo-org/matomo/issues/536 | 37,350,495 | 536 |
[
"matomo-org",
"matomo"
] | Below the table under Actions > Pages, Actions > Downloads and Actions > Outlinks, we should display the icons to export the datatable in XML/JSON/etc.
The data should contain detailed page information (count, entry, exit, bounce rate, etc.) when available.
| Add "export" icons below the "Actions" reports (pages, download, outlinks) | https://api.github.com/repos/matomo-org/matomo/issues/535/comments | 2 | 2009-02-02T06:45:20Z | 2014-07-08T09:59:30Z | https://github.com/matomo-org/matomo/issues/535 | 37,350,493 | 535 |
[
"matomo-org",
"matomo"
] | **Show graph of visits/pages over the last 30 days, for a specific row (keyword, country, etc.)**
The plugin would add, in all data tables, an icon next to the keyword/ country / page view (or on hover), that would ajax load an evolution graph of the number of visits for this keyword, country or page, over the last 30 days/weeks/month. The graph would have the 'data export' links.
**UI**
We should find out how to provide this UI feature without bloating the UI with icons and new functionnality. Note that some rows in Piwik are already clickable (eg. to get the list of keyword by search engine).
One way of doing it would be to show a semi transparent icon when hovering over a row. The icon would be shown at the end of the row.
The new UI would also be used to report the new reports from #756
**Report**
The report would contain, for a specific keyword or search engine or country or page, the following information:
- visits in date range + sparkline
- unique visitors in date range + sparkline
- bounce rate + sparkline
- (for pages) time per page, exit rate, etc. + sparkline
Also, we should report Goals conversions, maybe in a different report, available by a click on a tab, or some other mechanism.
This report would show, for this keyword/country/page, the following info:
- overall conversions / conversion rate / revenue per visit
- for each goal...
- conversions / conversion rate/ revenue per visit.
**Performance note**
Piwik stores data on a "per day" basis. When plotting number of page views for the url 'http://example.org/category/photo' for the last 30 days, it will require selecting data for the 30 days, and navigate through the tree to get the child node data (/photo) - this is all done automatically via filters. In this example, piwik would select 90 blobs of data, and unserialize, load in memory, grep, etc. This is a severe requirement and feasability should be studied before starting the implementation.
When plotting evolution of keyword "piwik" over the last 30 days, this would require 30 blobs of data to be selected/unserialize/loaded/etc.
**Note**
In the first version, only one data would be plottable. In future versions, we could think about plotting 3 or 4 keywords/countris on the same graph. How would this be available in the UI? Clicking on the icon could "enable" the line to be displayed on the graph, and a "reset" button, or a click on the icon, would disable this line. Requires #397.
Keywords: evolution, graph, multiple values, multi lines, plot, entity, UI pattern
| Row Evolution: historical view of one or many specific rows in all Piwik reports! | https://api.github.com/repos/matomo-org/matomo/issues/534/comments | 84 | 2009-02-02T05:39:30Z | 2014-07-08T10:16:52Z | https://github.com/matomo-org/matomo/issues/534 | 37,350,486 | 534 |
[
"matomo-org",
"matomo"
] | following the YSlow investigation #101, the main improvement we can do to make Piwik UI faster is to use the least number of Javascript and CSS files.
Piwik is sometimes using 10 CSS and 5 to 10 JS files, that is a lot of http requests to get all these files.
A system that would merge all files, could be implemented in an ANT task for example.
It would have to work well with Plugins as all the UI code is splitted across plugins.
A script would load all JS files, merge them into one big file, minimize the javascript.
A script would load and merge all CSS files into one CSS.
Implementation idea:
- rather than including the files directly, developers would use a smarty function to load their content, eg. "include_js_file ( 'UserSettings/js/admin.js' )"
- this function would know if this JS file is included in the eg. "merged.js" that contains all javascript. If the file contains the JS in 'UserSettings/js/admin.js' then function makes sure the right javascript is returned, otherwise returns call to load the file directly from 'UserSettings/js/admin.js'
- a script to compile JS and CSS would have to run and learn the list of files to include in which compressed file. It could read this from a static directory scheme (plugins/PLUGIN_NAME/js/\* contains all JS files, etc.) or be read from grepping the .tpl files looking for meta definition of function calls?
Notes:
- versioning files (js_045099.js) would be considered but optional especially if it makes implementation/setup harder
- we should use existing librairies that read, compress JS and CSS files. This tasks includes researching the best tool to use to do this
- how we ensure this is run at every piwik build? piwik is using Hudson for continous integration, this could for exammple be done in an ant script
| UI speed: merge and compress JS and CSS files | https://api.github.com/repos/matomo-org/matomo/issues/533/comments | 1 | 2009-02-02T04:17:10Z | 2014-07-08T09:59:27Z | https://github.com/matomo-org/matomo/issues/533 | 37,350,485 | 533 |
[
"matomo-org",
"matomo"
] | Since piwik is an analytical tool. I thought it would be balls to show the weekdays in historical charts.
For example the 'last_visits_graph' or nb_uniq_visitors show counts and the date as a great line chart.
It would be neat to segment off every 7 days. Thick borders, or perhaps color shading on/off.
This would be very useful to quickly realize that what days of the week seem to be patterns.
| UI: graphs to better show weeks in last N days graph | https://api.github.com/repos/matomo-org/matomo/issues/532/comments | 5 | 2009-02-02T02:29:32Z | 2014-07-08T09:59:27Z | https://github.com/matomo-org/matomo/issues/532 | 37,350,484 | 532 |
[
"matomo-org",
"matomo"
] | The plugin would list, for each URL of the pages in the page views report, the scores on the following websites, for example:
\* Digg
\* Sphinn
\* Mixx
\* Reddit
\* StumbleUpon
\* Del.icio.us
\* Yahoo inLinks
Resource:
- [Social Media Metrics Greasemonkey Plugin For Google Analytics](http://blog.vkistudios.com/index.cfm/2008/10/6/Social-Media-Metrics-Greasemonkey-Plugin-For-Google-Analytics)
Keywords: wishlist
| Plugin to show digg, yahoo, mixx, reddit, stumbleupon statistics for each page view | https://api.github.com/repos/matomo-org/matomo/issues/531/comments | 1 | 2009-01-31T01:10:24Z | 2014-07-08T09:59:27Z | https://github.com/matomo-org/matomo/issues/531 | 37,350,482 | 531 |
[
"matomo-org",
"matomo"
] | Currently Piwik reports on pages URL structures, or if user specifies a custom action name in the javascript, Piwik reports on this custom name.
Piwik has always access to the html page title and could build the report of the best page by title.
Therefore there would be a new API function to get the top pages by title, as well as the current method getActions to get the top actions by URL.
The title could be customized on the JS side by calling`
piwik.setDocumentTitle()`.
We would not report on best landing page, or top exit pages by title. We would not report on time per page title. These extra analysis would only be done on the URLs to minimize overhead during archiving.
| Report actions by html page title as well as reporting by URL (or custom page name) | https://api.github.com/repos/matomo-org/matomo/issues/530/comments | 4 | 2009-01-31T01:05:21Z | 2014-07-08T10:00:10Z | https://github.com/matomo-org/matomo/issues/530 | 37,350,481 | 530 |
[
"matomo-org",
"matomo"
] | Hi,
while browsing through the Counterize-ii plugin from Wordpress, I
noticed some referer from search.live.com which don't appear in Piwik.
So I decided to take a further look and discovered that there is no
entry (even for the whole year) for search.live.com in the "search
engines"-widget.
Does search.live.com appear in any Piwik stats?
| Recognizes Piwik search.live.com? | https://api.github.com/repos/matomo-org/matomo/issues/529/comments | 7 | 2009-01-30T10:12:15Z | 2014-07-08T09:59:27Z | https://github.com/matomo-org/matomo/issues/529 | 37,350,479 | 529 |
[
"matomo-org",
"matomo"
] | Using version 0.2.28
On Visitors -> Frequency & Loyalty there is a graph titled 'Evolution over the period' ( http://[mysite]/index.php?module=CoreHome&action=index&period=day&date=yesterday&idSite=4 ).
Here one can choose viewing several graphs like 'returning visits', 'total time spend by returning visits', etc.
The graph changes when I select one of them, but the legend always defines the line to be 'nb_uniq_visitors', which is incorrect.
| legend at 'Evolution over the period' is some times wrong | https://api.github.com/repos/matomo-org/matomo/issues/528/comments | 1 | 2009-01-30T08:22:44Z | 2014-07-08T09:59:27Z | https://github.com/matomo-org/matomo/issues/528 | 37,350,478 | 528 |
[
"matomo-org",
"matomo"
] | From [forum](http://forum.piwik.org/index.php?act=Post&CODE=02&f=2&t=129&qpid=357): Make the email 'from' address configurable in one of the ini files, instead of fixed at 'password-recovery@' in the controller.php code.
| Make the email 'from' address configurable in one of the ini files | https://api.github.com/repos/matomo-org/matomo/issues/527/comments | 1 | 2009-01-29T04:57:07Z | 2014-07-08T09:59:27Z | https://github.com/matomo-org/matomo/issues/527 | 37,350,477 | 527 |
[
"matomo-org",
"matomo"
] | Users can't edit their profile information. Currently users can only request a new password by clicking on "forgot password" link.
We should expose to all users the UI to edit their data:
- for normal user & admin user, can edit alias/password/email
- super user can edit its login, password, email (which updates the configuration file)
- (feature already available) super user can edit info of all users: alias, password, email.
- all editing of the profile is under a tab "My Profile" in the admin section
Therefore:
- the "Settings" link in top bar should always be shown
- for user with 'view', only show the "My Profile" tab
- for user with 'admin', show by default the "Websites" tab
- for super user, show by default the "Plugins" tab
(see redirectToIndex() in Piwik_CoreAdminHome_Controller)
This will make it easy for any plugins to add new menu entry in the admin section which will be shown for all users (not only for admin and super user)
| Each user should access a page to edit their info: alias, email, password. | https://api.github.com/repos/matomo-org/matomo/issues/526/comments | 9 | 2009-01-29T00:01:55Z | 2014-07-08T10:01:58Z | https://github.com/matomo-org/matomo/issues/526 | 37,350,475 | 526 |
[
"matomo-org",
"matomo"
] | If a developer uses the API as described in the tutorial at http://dev.piwik.org/trac/wiki/API/CallingTechniques it is difficult to use inside of an existing project that already sets the error_handler and exception_handler or has a different level of error reporting enabled in php. It should be possible to make it optional to call set_exception_handler and set_error_handler so that it is simpler to integrate the piwik API directly into an existing code base.
I have attached a simplistic patch that makes it possible for a user to define DISABLE_PIWIKERROR inside of their code so that it is possible to integrate the API directly into a project without resetting the error_handler and exception_handler.
I'm sure that this could be done better as the submitted patch has the limitation that it won't catch any serious errors that might actually occur in the API, but it does allow a user to integrate the API as part of a large code base (in my case drupal).
Let me know if you have any questions/comments.
| Calling set_error_handler and set_exception_handler as part of the API makes it difficult to use | https://api.github.com/repos/matomo-org/matomo/issues/525/comments | 2 | 2009-01-26T20:30:46Z | 2014-07-08T09:59:26Z | https://github.com/matomo-org/matomo/issues/525 | 37,350,474 | 525 |
[
"matomo-org",
"matomo"
] | All Piwik PHP files should contain the following header:
```
<?php
/**
* Piwik - Open source web analytics
*
* @link http://piwik.org
* @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
* @version $Id: $
*
*/
```
| Add piwik header to all .php files | https://api.github.com/repos/matomo-org/matomo/issues/524/comments | 5 | 2009-01-25T22:51:28Z | 2014-07-08T10:03:42Z | https://github.com/matomo-org/matomo/issues/524 | 37,350,473 | 524 |
[
"matomo-org",
"matomo"
] | It`s not possible to enter domain names with a german umlaut, e.g. tst.de
I couldn`t enter it in the field for mysql host (mysql5.tst.de) and for the - i think it was this field - piwik host folder.
| adding website with international characters doesn't work; eg. täst.de | https://api.github.com/repos/matomo-org/matomo/issues/523/comments | 1 | 2009-01-25T22:24:52Z | 2014-07-08T09:59:26Z | https://github.com/matomo-org/matomo/issues/523 | 37,350,472 | 523 |
[
"matomo-org",
"matomo"
] | Table "piwik_user_dashboard" has got a login-attribute, which is limited to 20 chars.
I've set up an username with more than 20 chars and therefore the login-value was cut to 20 chars and I couldn't change any settings in the dashboard. I went to phpMyAdmin and changed the login-attribute to 60 chars.
Piwik should throw an error if someone tries to setup an user with more than 20 chars or you should raise the char-length in the database.
Solution: we should make sure that login is restricted to the same length in the mysql tables (60 chars), and that it's properly checked against when creating a new user.
| inconsistency in login string length | https://api.github.com/repos/matomo-org/matomo/issues/522/comments | 3 | 2009-01-25T22:20:36Z | 2014-07-08T10:01:00Z | https://github.com/matomo-org/matomo/issues/522 | 37,350,471 | 522 |
[
"matomo-org",
"matomo"
] | I realized that the old feedburner ticker doesn't work for those who move to Google's feedburner accounts.
http://www.feedburner.com/fb/ticker/api-ticker2.jsp?uris=edwardawebb
boo!
But they allow access to the underlying info with the Awareness API.
https://feedburner.google.com/api/awareness/1.0/GetFeedData?uri=edwardawebb
So I wrote a new plugin to display my own chart... Same up down no change layout sans the FeedBurner logo.
I wanted to know how to share.
Keywords: feedburner
| Plugin Submission - New Feedburner Stats on Google | https://api.github.com/repos/matomo-org/matomo/issues/521/comments | 3 | 2009-01-25T18:53:25Z | 2014-07-08T09:59:26Z | https://github.com/matomo-org/matomo/issues/521 | 37,350,470 | 521 |
[
"matomo-org",
"matomo"
] | Update the links on the wiki [wiki:Plugins/Hooks]
| View in source links broken | https://api.github.com/repos/matomo-org/matomo/issues/520/comments | 4 | 2009-01-24T18:01:34Z | 2014-07-08T09:59:26Z | https://github.com/matomo-org/matomo/issues/520 | 37,350,469 | 520 |
[
"matomo-org",
"matomo"
] | This issue was raised by collection23 on the forum.
## http://forum.piwik.org/index.php?showtopic=161
Many dynamic generated Websites are using session-IDs to track users. In this case a URL kooks like: domain.tld/site1.html?SID=12345678. But the SID is different for each visitor.
In actions/pages PIWIK shows ten lines with the same page (domain.tld/site1.html) with ten different session IDs. It would be a great feature if there were an option to eliminate everything in the URL starting at a userdefined character string like "?SID=".
Result should be on line with a 10 times visited URL.
| Filter session ID from URL | https://api.github.com/repos/matomo-org/matomo/issues/519/comments | 2 | 2009-01-24T06:32:39Z | 2014-07-08T10:16:40Z | https://github.com/matomo-org/matomo/issues/519 | 37,350,468 | 519 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.