Fixed in 0.9.9.13, release today.
thank you.
will you also fix the https bug?
when non https site i tracked by a https domain.
Problem was that piwik shows “URL not defined”
This is not WP-Piwik related and not a bug, after all.
https://piwik.org/faq/general/faq_75/
As already announced, WP-Piwik 1.0 will allow you to change the tracking code on your own.
I just updated to 0.9.9.14 and now I’m getting not one, but 22 notices (Notice: Undefined index: nb_users ...) on my dashboard. o.O
Piwik v2.12.1
WordPress v4.1.1
Can you post the list of notices here?
(Please use the backticks.)
Notice: Undefined index: nb_users in /var/www/redacted/wp-content/plugins/wp-piwik/dashboard/overview.php on line 36
(same line, repeated 22 times)
Ah, ok. I made an error in reasoning while fixing the previous notice.
If you need a quick fix (the notice itself does not matter, but the adding up of some values in WP-Piwik’s overview widget does not work), just replace line 36 of overview.php with this line:
{ if (isset($aryTmp[$strKey])) $aryTmp[$strKey] += $strValue; }
Thanks, seems to work now. It was line 35 however. 😉