Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Developing a tracking pixel

I am trying to build a pixel that would track the current URL the user is on when they visit. I can use either JS (preferred) or a 1x1 image pixel. With JS I am assuming that I'd need to run an AJAX request to a PHP script to capture the info that I need and with an image pixel I am having issues getting the currently URL.

I also thought about URL encoding the current URL with JS and dynamically placing the image pixel with the encoded current URL as a query string to a PHP script, but that I can get to be very long.

If I am to go the AJAX route, which AJAX library can I use? JQuery is too bloated for this purpose.

Any other ideas?

like image 829
AXM Avatar asked Oct 26 '12 01:10

AXM


People also ask

Can you create your own tracking pixel?

Creating it is as easy as inputting a user name, picking a tracking pixel image, and hitting the enter key. From there, you can save the image, paste it in the body of any email, and send it off. Whoever opens it will have the when and even the where transmitted back to you.

Is tracking pixel legal?

On the contrary, the GDPR has much stricter rules regarding tracking and consent. A user's consent must be gathered before any tracking can take place, which means tracking pixels may not be used prior to consent.


2 Answers

You can write a script that creates and returns a .gif, .jpeg or .png image using PHP for tracking purposes using the GD library (which is often distributed with PHP in modern versions). If you don't have access to GD, you can always recompile PHP with GD enabled.

Example:

pixel.php (commented for the purposes of explanation):

<?php    // Create an image, 1x1 pixel in size   $im=imagecreate(1,1);    // Set the background colour   $white=imagecolorallocate($im,255,255,255);    // Allocate the background colour   imagesetpixel($im,1,1,$white);    // Set the image type   header("content-type:image/jpg");    // Create a JPEG file from the image   imagejpeg($im);    // Free memory associated with the image   imagedestroy($im);  ?> 

In a simple example, you can then call this tracking pixel using the following example URL in an email or other page:

<img src="http://example.com/pixel.php?a=value1&b=value2&c=value3"> 



Using variables:

Within your pixel.php you can then parse and interpret any $_GET variables that are passed to it within the image tag, simplistically:

if (isset($_GET['a'])) {   // (Do|log) act on a } if (isset($_GET['b'])) {   // (Do|log) act on b } if (isset($_GET['c'])) {   // (Do|log) act on c } 

Apply and repeat as you need, but you can be quite sophisticated about what you do and especially as you have access to quite a lot of information about the user through being able to set vars on the $_GET string.

A more applicable example might be:

<img src="http://example.com/pixel.php?userid=98798&campaign=302&last=8"> 



Tracking more than just $_GET variables:

You can also pick up much more information using PHP, such as:

// Server variables $ip = $_SERVER['REMOTE_ADDR']; $referer = $_SERVER['HTTP_REFERER']; $useragent = $_SERVER['HTTP_USER_AGENT']; $browser = get_browser(null, true); etc... 

and then perhaps insert into a tracking table in your database:

$sql = "INSERT INTO campaign_tracking          ('when','campaign','last','ip','useragent')          VALUES          (NOW(),'$campaign','$last','$ip','$useragent')"; 

This is a(the) basic method used widely for tracking email marketing campaigns and specifically in PHP, but the same method is applicable using other scripting/programming languages and libraries - and for other purposes too.

Further and useful information on GD:

  • GD reference - on php.net
like image 138
nickhar Avatar answered Oct 05 '22 22:10

nickhar


Here is another PHP implementation of a tracking pixel, from the Open Web Analytics project, which attempts to basically be a PHP clone of Google Analytics.

It returns a 1x1 transparent GIF image (without using a PHP image library!), with a no-cache header (important for accurate tracking), and flushes the output so you can continue processing the analytics without blocking the HTTP response (performance). It seems like a pretty advanced implementation, worth trying out.

<?php ignore_user_abort(true);  // turn off gzip compression if ( function_exists( 'apache_setenv' ) ) {   apache_setenv( 'no-gzip', 1 ); }  ini_set('zlib.output_compression', 0);  // turn on output buffering if necessary if (ob_get_level() == 0) {   ob_start(); }  // removing any content encoding like gzip etc. header('Content-encoding: none', true);  //check to ses if request is a POST if ($_SERVER['REQUEST_METHOD'] === 'POST') {   // the GIF should not be POSTed to, so do nothing...   echo ' '; } else {   // return 1x1 pixel transparent gif   header("Content-type: image/gif");   // needed to avoid cache time on browser side   header("Content-Length: 42");   header("Cache-Control: private, no-cache, no-cache=Set-Cookie, proxy-revalidate");   header("Expires: Wed, 11 Jan 2000 12:59:00 GMT");   header("Last-Modified: Wed, 11 Jan 2006 12:59:00 GMT");   header("Pragma: no-cache");    echo sprintf('%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%',71,73,70,56,57,97,1,0,1,0,128,255,0,192,192,192,0,0,0,33,249,4,1,0,0,0,0,44,0,0,0,0,1,0,1,0,0,2,2,68,1,0,59);     }  // flush all output buffers. No reason to make the user wait for OWA. ob_flush(); flush(); ob_end_flush();  // DO ANALYTICS TRACKING HERE 
like image 31
thaddeusmt Avatar answered Oct 05 '22 23:10

thaddeusmt