Difference between revisions of "Type-In Traffic"

From TMM Wiki
Jump to navigationJump to search
(New page: {{NATS4 Manual | show_sites_admin_section = true }} {{NATS3 Manual | show_sites_admin_section = true }} ==NATS Admin== Nats 3 and Nats 4 do not track Type-In Raw and Unique hits To do ...)
 
 
(5 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{NATS4 Manual
 
| show_sites_admin_section = true
 
}}
 
 
{{NATS3 Manual
 
{{NATS3 Manual
 
| show_sites_admin_section = true
 
| show_sites_admin_section = true
 
}}
 
}}
  
 +
Type-In Traffic is considered to be any visitor/surfer that was not redirected through an affiliate's link, and as a result has not had their hits/activity tracked or gone through standard tour pages.
  
 +
==NATS Admin==
  
==NATS Admin==
+
[[NATS3]] does not track Raw and Unique hits that come from Type-In traffic, as they have not been referred by an affiliate tracking link. In order to track Type-In traffic, you must either create a new affiliate with a $0 payout or edit an already existing in-house account as a dummy account under the [[NATS3]] Affiliates Admin.
Nats 3 and Nats 4 do not track Type-In Raw and Unique hits
 
  
To do so, you would need to create a new affiliate with $0 payout or an already existing In-house account.
+
Once the affiliate account has been created or modified, you must then override the affiliate's account and go to their [[Affiliate_Link_Codes|Link Codes]] page.
  
Once the affiliate is created or chosen, override as that affiliate and go to their link codes page.  
+
[[File:Link_codes.PNG|450px|NATS Link Codes]]
  
 
For each site, take the link code from that affiliate:
 
For each site, take the link code from that affiliate:
 +
 
e.g.
 
e.g.
 
<pre>
 
<pre>
http://demo.nats4.com/track/NjUuMi4xLjEuMC4wLjAuMA
+
http://demo.nats3.com/track/NjUuMi4xLjEuMC4wLjAuMA
 
</pre>
 
</pre>
  
Retrieve the Nats code:
+
 
 +
Retrieve the NATS code from the end of their link:
 +
 
 
<pre>
 
<pre>
 
NjUuMi4xLjEuMC4wLjAuMA
 
NjUuMi4xLjEuMC4wLjAuMA
 
</pre>
 
</pre>
  
And then replace the Nats code in your Default join form links and any links to your track pages with the now retrieved Nats code
+
 
 +
Once you have done this, use the NATS code you retrieved from the Link Codes page to replace the code in your ''Default'' join form links, as well as any links to your tracking pages.
  
 
<pre>
 
<pre>
http://demo.nats4.com/signup/signup.php?nats=<?=$_REQUEST['nats']?$_REQUEST['nats']:'MC4wLjEuMS4wLjAuMC4w'?>&step=2
+
http://demo.nats3.com/signup/signup.php?nats=<?=(!empty($_REQUEST['nats']) && !preg_match('/[\'\"<>()\\\+\[\]]/', $_REQUEST['nats']))?$_REQUEST['nats']:'MC4wLjEuMS4wLjAuMC4w'?>&step=2
 
</pre>
 
</pre>
 +
 
Becomes:
 
Becomes:
 +
 
<pre>
 
<pre>
http://demo.nats4.com/signup/signup.php?nats=<?=$_REQUEST['nats']?$_REQUEST['nats']:'NjUuMi4xLjEuMC4wLjAuMA'?>&step=2
+
http://demo.nats3.com/signup/signup.php?nats=<?=(!empty($_REQUEST['nats']) && !preg_match('/[\'\"<>()\\\+\[\]]/', $_REQUEST['nats']))?$_REQUEST['nats']:'NjUuMi4xLjEuMC4wLjAuMA'?>&step=2
 
</pre>
 
</pre>
  
<b>MC4wLjEuMS4wLjAuMC4w</b> has been replaced with <b>NjUuMi4xLjEuMC4wLjAuMA</b>
+
 
 +
In this example, the code <b>MC4wLjEuMS4wLjAuMC4w</b> (original code) has been replaced with <b>NjUuMi4xLjEuMC4wLjAuMA</b> (code from the Link Codes page)

Latest revision as of 16:36, 19 May 2017

NATS 3
Sites Admin
Sites
Site Setup
Configure Redirects
ID Numbers
Automail
Site User Management
Username Checking
Join Form Errors
Free Pre-Initial Checkbox
Payouts Based on Program and Join Options
Payouts Based on Join Option and Per Option
Adding Extra Site Tours
Site Partner
Join Options
Multisite Access
Removing Join Options
Tour Setup
Site Undelete
Join Option Box vs Button
Redirecting Traffic to a Sponsor
Qualified Join Page Hits
Type-In Traffic
Allowed languages
Linkcode Decoding

Type-In Traffic is considered to be any visitor/surfer that was not redirected through an affiliate's link, and as a result has not had their hits/activity tracked or gone through standard tour pages.

NATS Admin

NATS3 does not track Raw and Unique hits that come from Type-In traffic, as they have not been referred by an affiliate tracking link. In order to track Type-In traffic, you must either create a new affiliate with a $0 payout or edit an already existing in-house account as a dummy account under the NATS3 Affiliates Admin.

Once the affiliate account has been created or modified, you must then override the affiliate's account and go to their Link Codes page.

NATS Link Codes

For each site, take the link code from that affiliate:

e.g.

http://demo.nats3.com/track/NjUuMi4xLjEuMC4wLjAuMA


Retrieve the NATS code from the end of their link:

NjUuMi4xLjEuMC4wLjAuMA


Once you have done this, use the NATS code you retrieved from the Link Codes page to replace the code in your Default join form links, as well as any links to your tracking pages.

http://demo.nats3.com/signup/signup.php?nats=<?=(!empty($_REQUEST['nats']) && !preg_match('/[\'\"<>()\\\+\[\]]/', $_REQUEST['nats']))?$_REQUEST['nats']:'MC4wLjEuMS4wLjAuMC4w'?>&step=2

Becomes:

http://demo.nats3.com/signup/signup.php?nats=<?=(!empty($_REQUEST['nats']) && !preg_match('/[\'\"<>()\\\+\[\]]/', $_REQUEST['nats']))?$_REQUEST['nats']:'NjUuMi4xLjEuMC4wLjAuMA'?>&step=2


In this example, the code MC4wLjEuMS4wLjAuMC4w (original code) has been replaced with NjUuMi4xLjEuMC4wLjAuMA (code from the Link Codes page)