Home > Paid Traffic Sources > Display / Media Buying

PPV Media Buying- (Filter question, Traffic Source Question) (5)


11-13-2012 02:56 PM #1 ynky711 (Member)
PPV Media Buying- (Filter question, Traffic Source Question)

Is there any way to filter out states, age or demographics using cpvlab and traffic vance. Is there any sort of code? I have one hell of a baseline


11-14-2012 11:51 PM #2 tical (Member)

You can send your TV traffic to a script that splits visitors up by region (state) and forwards those users to an appropriate tracking link of your choice. Don't think it's possible to get any demographic info from the traffic however.

Here's a script you can use to bounce incoming traffic around by state... just add the rest of the "case" statements for the remaining states.

<html>
<head>
<title></title>
<script src="http://j.maxmind.com/app/geoip.js" charset="ISO-8859-1" type="text/javascript" ></script>
<script type="text/javascript">
var stateabbr = geoip_region();
switch(stateabbr)
{
case "CA":
window.location = 'http://www.yourlink.com/california.html';
break;
case "NV":
window.location = 'http://www.yourlink.com/nevada.html';
break;
// add the rest of the cases here
default:
window.location = 'http://www.yourlink.com/default.html';
}
</script>
</head>
<body></body>
</html>


11-19-2012 04:40 PM #3 dario (Member)

I found maxmind js script to be slow and not accurate IMO. What do you think ?


11-19-2012 05:16 PM #4 hd2010 (Member)

no need to think, switch to php, server side solution and get a fast hosting


11-19-2012 07:08 PM #5 mbhansen (Member)

I do GEO via a php script as well. It's more stable than JS IMO and you can do more as its then handled on the server vs the client.


Home > Paid Traffic Sources > Display / Media Buying