5

I'm using Piwik to analyse the user-actions on my sites, and everything is working fine when the site is shown up in the browser (on PC, Mac, and phone browser).

But when I surf to the same pages (with the piwik code inside) inside a PhoneGap app, the app is loading and loading and loading and displays in the end... nothing.

What's wrong there? JavaScript is enabled. Is there a known problem, and is Google Analytics the better alternative?

Thanks.

John Brunner
  • 2,842
  • 11
  • 44
  • 85

1 Answers1

0

Maybe you blocked piwik's tracker url inside your phonegap config.xml?

Try to add this to your config.xml:

<access origin="*"/>
Armin
  • 1