• Hi,

    The email address in site_tracking.js should be url-encoded.

    This:

    trackcmp.src = ‘//trackcmp.net/visit?actid=’ + php_data.ac_settings.tracking_actid + ‘&e=’+ trackcmp_email +’&r=’+encodeURIComponent(document.referrer)+’&u=’+encodeURIComponent(window.location.href);

    should be changed to this:

    trackcmp.src = ‘//trackcmp.net/visit?actid=’ + php_data.ac_settings.tracking_actid + ‘&e=’+ encodeURIComponent(trackcmp_email) +’&r=’+encodeURIComponent(document.referrer)+’&u=’+encodeURIComponent(window.location.href);

  • The topic ‘email address in site_tracking.js not url-encoded’ is closed to new replies.