Forum
Welcome, Guest
Please Login to access forum.
Re:Tracking pdf downloads (1 viewing) 
Go to bottom
TOPIC: Re:Tracking pdf downloads
#1830
John Dagelmore
Admin
Posts: 3881
User Offline
Re:Tracking pdf downloads Karma: 84  
Hello Chris,

looking at the code used maybe the problem could be the different path for the tracking url.

Instead of use this:
Code:

<a href="http://wwwdev.thealliedgrp.com/images/Certifications/FS_546257.pdf" onclick="document.getElementById('trackdownload').src='/index.php? option=com_jrealtimeanalytics&track=1'">FS 546258</a><iframe id="trackdownload" style="display:none" src="/"></iframe>
try to match exactly the domain and the same url set for the custom url of the event in backend:
Code:

<a href="http://wwwdev.thealliedgrp.com/images/Certifications/FS_546257.pdf" onclick="document.getElementById('trackdownload').src='http://wwwdev.thealliedgrp.com/index.php? option=com_jrealtimeanalytics&track=1'">FS 546258</a><iframe id="trackdownload" style="display:none" src="/"></iframe>
thus trying to set the 'src' attribute with the full site path:
Code:

http://wwwdev.thealliedgrp.com/index.php?option=com_jrealtimeanalytics&track=1
instead of
Code:

/index.php?option=com_jrealtimeanalytics&track=1
John
 
Logged Logged  
  The administrator has disabled public write access.
      Topics Author
    thread link
Tracking pdf downloads
The Allied Group
    thread link
thread linkthread link Re:Tracking pdf downloads
John Dagelmore
    thread link
thread linkthread linkthread link Re:Tracking pdf downloads
Chris Matthews
    thread link
thread linkthread linkthread linkthread link Re:Tracking pdf downloads
John Dagelmore
Go to top