Forum Moderators: DixonJones
I did set up keyword tracking so every order shows the keywords and SE sending the customer - but there's about 50% empty referers, and I just don't believe all those people just open their browser, guess the URL and type it into their browser ...
If that is so (and not just a local problem) we probably only see part of the big picture in our log files. Is there any other way to track keywords apart from analysing http-referer?
I already told my client to ask his customers how they found him and if was through a SE, which keywords they used, but .....
Nerd, could you also explain a little more of what you mean by Norton stripping away the referrer? Do you mean that people using certain Norton products on their computers do not tell a site what the referrer site was, when and if they click on links?
Yes, exactly. I first realized this when I wanted to track referals to my site using http-referer.
The idea was to store the refering URL of the dealer in a database, compare the http-referer to the database string and then give the dealer some credit. This way I could have gained a couple hundred clean links to my homepage without any parameters or rewriting.
Worked nice on my dev machine - then I went home and it cost me 3 hours to find out why it wouldn't work there: Internet Security filtered out the referer.
I believe the property document.referer may be populated by the HTTP_REFERER header.
If the user has JavaScript enabled and the document.referer is set, you can usally get it
even behind a firewall, proxy, e-mail, news group post and even sticky mail.
Also can add JS code to a FORM to pass it on as a hidden field:
<script TYPE="text/javascript">
document.write("<input type=\"hidden\" name=\"REF\" value=\""+document.referrer+"\">");
</script>
GeorgeGG
If the user has JavaScript enabled and the document.referer is set, you can usally get it
even behind a firewall, proxy, e-mail, news group post and even sticky mail.
thanks for sharing!
But, how do you take home the info to the server if the user clicks a link instead of a form? Some kind of hidden http-request started when loading the page?
nerd
Sticky if needed :)
GeorgeGG