Forum Moderators: DixonJones
I have following problem:
We have a website, where we sell products. A week ago, we started advertising the page to get new customers.
I am really interested in getting to know my users better. I would like to track e.g. how many banners the user have to see until he places an order. Or how many newsletters do I have to send, before a product is bought. How many users, who come via e.g. the SE google to our side, place a order, how many of them not... Or how many visits to the page, until a sales is made.
Is there a enhanced web tracking program which uses e.g. cookie technology to track the user down ????? Or do we have to develop this ourselves ?
Thanks,
Telsi
In my personal experience I haven't seen an out of the box solution that has adequately addressed this yet. All of the systems that have done a good job have been custom. You may just have to do it yourself.
I would try google.
I am looking for something more sophisticated. I want to track every single user movement. How often does this single user come, where does he/she come from (e.g. SE, direct input...). If the user responds to my newsletter mailings, how often, if the user wants to buy products, how many, is information important etc.´
A "normal" logfile program don't give me the insights in this single user. But thats what I am interested in.
Thanks,
TELSi
Of course, this will be a pain, hard to setup, and will be blocked by quite a few users.
Tracking solutions usually have to be a mixture of the three basics:
Dedicated landing pages for each campaign so that each hit to that page is identified back to a specific campaign.
Cookie tracking to keep track of information beyond each individual session, thus tying the sessions together.
Server side information gleaned from HTTP requests and session tracking.
Ammon Johns
Internet Marketing Consultant
thinking about it more you will probably need to develop something yourself.
>>I want to track every single user movement
This is the main reason, I think I would go with a mix of cookies and ip tracking stored in a db and then you can plug all of your different systems together (newsletter, shopping cart, site). It is a lot of time to develop but if that is what you need you should be able to do it.
With DART we are able to track impressions, clicks, and conversions in aggregate. Banner 1 got 2500 clicks, and of those 2500 clicks, 2000 people viewed the landing page, 800 viewed some other page and 400 hit the conversion page.
To the best of my knowledge it does not go down to the individual user level, it does not work with regular search referrals where a redirect can not be included in the URL. There is some kind of "view through" stuff in DART that will tell you the number of people that saw an ad and then visited the site or hit a conversion page but I don't think it is possible ot take into account other factors. Say someone has been a customer for a while, then happenes to view a page with one of your ads, then buys something. This might lead to the assuption that the person saw an ad didn't click through but did come to the site later and purchased something - which is all true, except that they were already a customer so the ad probably had no effect.
As has been suggested already it may take a combination of different services/packages to achieve the level of detail you are looking for. If you search for pay per click tracking services you will find some that can track conversion by PPC search term and some that offer some kind of tracking for regular search referrals.
Without building something custom, there is probably not one tool, that is inexpesively priced that will do all the desired functions.
With this package you can track conversions down to single keyword and user level, calculate ROI, set up special sceniario reporting, customized reports etc. I think you will find all you need - but then again, it dosen't come free :)
Using JavaScript to create, manipulate and read cookies is very simple. I use a custom cookie solution myself for PPC conversion tracking for some of my clients.
There are a few essentials you need to know:
These should get you started:
Webmonkey JavaScript tutorial on cookies [hotwired.lycos.com]
Code for JavaScript, VB and CGI cookies [simonstl.com]
Great article about 'Intelligent' cookies [tech.irt.org]
Ammon Johns