Piwik is not verifying

I am new to piwik and I can’t understand what I did wrong. Please help me if you can

I started piwik, created account and added my website http://www.eurovisionaustria.com/
Added tracking code in the body view-source:http://www.eurovisionaustria.com/

But still it shows “No data has been recorded yet” see the screenshot Диспетчер задач Windows (372 kb) закачан 31 марта 2015 г. Joxi

The same problem here.

On the same webspace there are 3 more piwik installations. In the same database. These 3 works. But older versions of piwik.
With the piwik version of today i have the same problem.

I found the mistake and fixed.

instead of var paq = paq || []; put var __paq = paq || [];

In the JS-Lines?
With two underlines?

This does not work for me. :frowning:

All Piwik requirements are green. Only “LOAD DATA INFILE” does not work.
My JS Code:


<script type="text/javascript">
  var _paq = _paq || [];
  _paq.push(['trackPageView']);
  _paq.push(['enableLinkTracking']);
  (function() {
    var u="//exemple.url/folder/";
    _paq.push(['setTrackerUrl', u+'piwik.php']);
    _paq.push(['setSiteId', 1]);
    var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
    g.type='text/javascript'; g.async=true; g.defer=true; g.src=u+'piwik.js'; s.parentNode.insertBefore(g,s);
  })();
</script>
<noscript><p><img src="//exemple.url/folder/piwik.php?idsite=1" style="border:0;" alt="" /></p></noscript>

var _paq = _paq || []; I think this is wrong

try like this var _paq = paq || [];

Unfortunately not.

I have all variants tested, always the same error like:
“ReferenceError: paq is not defined”

except the js code from my second post.

Oh man.
Very simple error , deleted Typo3 / temp folder content . Now it is running. (i use no extension)

I fool

Thx 4 your help.