Greenguy's Board


Go Back   Greenguy's Board > General Business Knowledge
Register FAQ Calendar Today's Posts

Reply
 
Thread Tools Search this Thread Rate Thread Display Modes
Old 2005-05-23, 11:24 AM   #26
cd34
a.k.a. Sparky
 
cd34's Avatar
 
Join Date: Sep 2004
Location: West Palm Beach, FL, USA
Posts: 2,396
that would track 100 raw & 1 unique.
__________________
SnapReplay.com a different way to share photos - iPhone & Android
cd34 is offline   Reply With Quote
Old 2005-05-23, 11:29 AM   #27
ClickBuster
I'm normally not a praying man, but if you're up there, please save me Superman!
 
ClickBuster's Avatar
 
Join Date: Dec 2004
Location: Bulgaria
Posts: 476
Send a message via ICQ to ClickBuster
Quote:
Originally Posted by cd34
that would track 100 raw & 1 unique.
Are you sure?
__________________
The tendency is to push it as far as you can
-- Fear and Loathing In Las Vegas
ClickBuster is offline   Reply With Quote
Old 2005-05-23, 12:00 PM   #28
seoguy
Rock stars ... is there anything they don't know?
 
Join Date: Nov 2004
Posts: 15
Quote:
Originally Posted by ClickBuster
Opti, one of the reasons that people are seeing differences in stats and bad ratios is the fact that NATS tracks only with cookies. How to check this? A simple PHP script can prove this.
Code:
<?php
set_time_limit(0);
for ( $i = 0; $i < 100; $i++ )
  file ('YOUR_NATS_CODE_HERE');
?>
This will track 100 unique hits in your account. If you try this on MPA, it won't work, because it tracks with both cookies and database.

-- Andrew
hey,

could you tell sme (i don't know anything about scripting and so) if this is good or bad :-)
seoguy is offline   Reply With Quote
Old 2005-05-23, 12:18 PM   #29
cd34
a.k.a. Sparky
 
cd34's Avatar
 
Join Date: Sep 2004
Location: West Palm Beach, FL, USA
Posts: 2,396
100 hits to a url from the same IP address = 100 RAW = 1 UNIQUE

100 hits to a url from 100 different IP addresses = 100 RAW = 100 UNIQUE

There are three real ways to do tracking:

Cookie
Hash
URL Munging

Tracking by cookie is easy to spot -- tell your browser to notify you of any cookies set and when you click your link you'll see the cookie.

Tracking by hash is usually used as a backup. This is sometimes an IP only or IP/UserAgent hash that is used to identify the sending webmaster. The trick here is that on some 3rd party systems, your hash can get quite muddied by the fact that a user going through one of AOL's edge proxy servers would have the same IP and possibly the same UserAgent as someone else that was sent. I don't know the mechanics of how CCBill does this, but, they do employ a hash as a secondary validation.

URL Munging -- this is pretty easy to see when the url that the surfer sees either has query strings or prestates that follow the surfer along. Provides for an ugly url, but, unless a surfer dissects the url, the tracking will follow through.

Obviously using all three is preferred. #3 requires some work on the webmaster's part to make a tour that passes the info along. #2 requires some database work and #1 is pretty easy to implement without any code changes to the sponsor's tour.
__________________
SnapReplay.com a different way to share photos - iPhone & Android
cd34 is offline   Reply With Quote
Old 2005-05-23, 12:57 PM   #30
ClickBuster
I'm normally not a praying man, but if you're up there, please save me Superman!
 
ClickBuster's Avatar
 
Join Date: Dec 2004
Location: Bulgaria
Posts: 476
Send a message via ICQ to ClickBuster
lame
__________________
The tendency is to push it as far as you can
-- Fear and Loathing In Las Vegas
ClickBuster is offline   Reply With Quote
Old 2005-05-23, 12:59 PM   #31
ClickBuster
I'm normally not a praying man, but if you're up there, please save me Superman!
 
ClickBuster's Avatar
 
Join Date: Dec 2004
Location: Bulgaria
Posts: 476
Send a message via ICQ to ClickBuster
Quote:
Originally Posted by seoguy
hey,

could you tell sme (i don't know anything about scripting and so) if this is good or bad :-)
Well if the surfer's browser does not support cookies or they're turned off - you lose the sale - now you tell me, is it good or bad?
__________________
The tendency is to push it as far as you can
-- Fear and Loathing In Las Vegas
ClickBuster is offline   Reply With Quote
Old 2005-05-23, 01:18 PM   #32
swedguy
Vagabond
 
swedguy's Avatar
 
Join Date: Aug 2003
Posts: 2,374
Send a message via ICQ to swedguy
Quote:
Originally Posted by ClickBuster
Well if the surfer's browser does not support cookies or they're turned off - you lose the sale - now you tell me, is it good or bad?
The wm ID is still in the query string and follow through on all the pages = you will still get a sale.
swedguy is offline   Reply With Quote
Old 2005-05-23, 02:12 PM   #33
ClickBuster
I'm normally not a praying man, but if you're up there, please save me Superman!
 
ClickBuster's Avatar
 
Join Date: Dec 2004
Location: Bulgaria
Posts: 476
Send a message via ICQ to ClickBuster
Quote:
Originally Posted by swedguy
The wm ID is still in the query string and follow through on all the pages = you will still get a sale.
Unless the surfer decides to go to the index page, where it's cookie will be rewritten with the default account ID for the site. But you will get bookmark sales which is good.

This is not the proper way to track, because you may see more unique hits (surfers with no cookies), that are actually raw hits. That's where stats difference may occur and is not a reason that would affect your sales too much.

I bet their reason was to increase the stability of the system and not do a database check, which can be prevented from just looking at the cookie (if it exists, no check is needed).

__________________
The tendency is to push it as far as you can
-- Fear and Loathing In Las Vegas
ClickBuster is offline   Reply With Quote
Old 2005-05-23, 02:25 PM   #34
swedguy
Vagabond
 
swedguy's Avatar
 
Join Date: Aug 2003
Posts: 2,374
Send a message via ICQ to swedguy
Quote:
Originally Posted by ClickBuster
Unless the surfer decides to go to the index page, where it's cookie will be rewritten with the default account ID for the site. But you will get bookmark sales which is good.
The default is the opposite. So far I've only seen one company that changes it to their own ID on the index page (the company that owns that other big board).
swedguy is offline   Reply With Quote
Old 2005-05-23, 02:50 PM   #35
ClickBuster
I'm normally not a praying man, but if you're up there, please save me Superman!
 
ClickBuster's Avatar
 
Join Date: Dec 2004
Location: Bulgaria
Posts: 476
Send a message via ICQ to ClickBuster
ahahahaha... I thoiught it was static
__________________
The tendency is to push it as far as you can
-- Fear and Loathing In Las Vegas
ClickBuster is offline   Reply With Quote
Old 2005-05-24, 12:03 PM   #36
N J
Trying is the first step towards failure
 
Join Date: Oct 2004
Posts: 128
Quote:
Originally Posted by cellinis
As it is, this NATS thing basically renders my landing pages useless, because there is no Direct to Join option... and now this..
Actually this is possible, however a bit tricky, but this might help you:

Is it possible for an affiliate to generate or create a link that goes to the join page directly?
For an affiliate no, not really. You've got 3 choices. You can provide them with the default join form links that are displayed on your Site Admin page but replace the <?=$_REQUEST['nats']?$_REQUEST['nats']:'MDowOjI'?> with thier NATS code. Another option is they can follow thier link codes to the join form and grab the join form path from the browser. One last option is to set up a tour that leads directly to the join and have them link to that tour.
N J is offline   Reply With Quote
Old 2005-05-24, 12:09 PM   #37
GonZo
You can now put whatever you want in this space :)
 
GonZo's Avatar
 
Join Date: Apr 2003
Location: Atlanta,Ga
Posts: 893
Nats for program management is pretty damn comprehensive. I can tell you getting it set up can be difficult and time consuming.

They need to explore working with 3rd party integrators in the near future to insure success.

If you dont have someone competant that is dedicated to this project it could linger on for the better part of 7-10 months. Believe me... I know firsthand.

What is it they say at the Zoo? See sig?

haha.
GonZo is offline   Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 04:07 PM.


Mark Read
Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
© Greenguy Marketing Inc