Forum Moderators: DixonJones
If I understand this correctly, I send them a clear gif which links to, for example, www.hotelsite.com/images/paid.gif, and they place it on the page (in this case, a "thank you" page). Calls for that image file will show up in my log files.
Are there any down sides to this process? I see lots of references to use of clear gifs in privacy policies, but it doesn't seem evil to me since I'm not collecting any private data. Perhaps the objections are when they are used with cookies.
I guess what I'm asking is whether this practice is considered to be completely ethical and is search-engine approved (not considered any kind of spam).
Thanks
A system that uses Javascript and cookies might work (I know of only one affordable ASP for this--I don't know how to build it myself), but I also thought I should look into using the pixel gifs and log file analysis. I haven't been able to set up trials yet, and I'm not sure how well it will work.
I'm new to this level of tracking and appreciate any information or advice I can get on ways to track conversions. I'm hopeful I can find a workable and affordable solution.
Thanks
The best way around this is if you have tight relations with the merchant to have them delegate you a subdomain that points to your tracking server - that way you are nolonger third party.
For example, the url would have the form of:
[affiliate.merchant.com...]
One thing I do routinely is source tracking images with javascript. This method bypasses most privacy filters (since there is no image displayed) but obvioulsy won't work if someone has JavaScript turned off.
Example:
<script>
pix = new Image();
pix.src=http://www.affiliate.com/track.gif;
</script>
I also like the javascript approach because it makes it easy to add additional variables onto the call.