How to handle usrfiles.com (CDN)

I have a website up on wix.com, and they use usrfiles.com as a CDN to load balance etc.

The problem I am having is that all I see in my Dashboard are the CDN visits, and not which of my website pages those served pages correspond to.

What did I miss? It seems to me that it should be able to handle this and that this is not only not uncommon but probably quite common, but I didn’t see anything in the User Guides that applied to this situation. I also didn’t see anything in the Forums that addressed this directly, which tells me that I must have done something incorrectly, or missed something obvious.

Looked through the User Guide and made changes to the javascript that_should_ work, but do not; setDocumentTitle to document.title and document.domain + / + document.title:

`<!-- Piwik -->
<script type="text/javascript">
  var _paq = _paq || [];

_paq.push(['setDocumentTitle', document.domain + "/" + document.title]); _paq.push(['trackPageView']);
  _paq.push(['enableLinkTracking']);
  (function() {
    var u="//www.quixoticraindrop.com/analytics/";
    _paq.push(['setTrackerUrl', u+'piwik.php']);
    _paq.push(['setSiteId', 2]);
    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="//www.quixoticraindrop.com/analytics/piwik.php?idsite=2" style="border:0;" alt="" /></p></noscript>
<!-- End Piwik Code -->`