Geotargetting specific adverts, affiliate offers or content pieces is one of the most efficient improvements you can make to your website.
Spend an hour installing and configuring your geotargeting script and your revenue can increase dramtically.
Geotargetting is simply the art of showing different content to your visitors depending on which country they are from. For example if I have an affiliate offer that is only available to customers from the UK I know that it will be useless to US visitors. Using my script I will direct US visitors towards a similar product on Amazon or eBay.
Advertising networks such as DoubleClick and Adsense allow advertisers to target specific countries resulting in larger CPM payments and greater ROI for the advertisers so it clearly makes sense for you to do the same.
Other useful applications would include allowing advertisers on your site to target traffic from a certain location or to stop Yahoo Publisher Network ads showing for international users.
The first step towards installing your geotargetting script is to visit Maxmind and purchase a downloadable GeoIP database for $50. This database allows you to match up your visitors IP address to their country.
Once you have the database you will need to upload it to your site, I suggest keeping it outside your root directory or renaming it in case other people try to use it. The database file should be called geoip.inc.
Next you will need to add the script below to the top of each page on your website. If you have a main database connection file included already you could just add it to this.
if (isset($_COOKIE["geoip"])) {
$country = $_COOKIE['geoip'];
}
else
{
include("/home/your_folder/geoip.inc");
$gi = geoip_open("GeoIP.dat",GEOIP_STANDARD);
$country = geoip_country_code_by_addr($gi, $REMOTE_ADDR);
geoip_close($gi);
setcookie(“geoip”, $country, time()+3600, “/”, “.yoursite.com”, 0); //1 hour cookie
}
Using this information
Now we have stored the country of the visitor in a $country variable that can be used on each page of your site. To make use of this simply add the following code to your pages:
if($country=="GB"){
//UK offer
}
else
{
// worldwide offer
}
Combine this script with the outbound affiliate link redirection script and you have a perfect money making machine.
If you have any questions please post below.
You can get our blog posts delivered for free by email every day - simply add your email address to the box below or alternatively grab the RSS feed.







{ 12 comments… read them below or add one }
Hey Patrick,
I just wanted to point out that MaxMind offers a free IP2Country database here:
http://www.maxmind.com/app/geolitecountry
I also found another free database here:
http://software77.net/cgi-bin/ip-country/geo-ip.pl
Hope this helps.
I put this code on my website with about 3000 uniques a day but not with cookies implemented. (I got this code from another website but I forgot to implement the cookies part). About a week later I had my site suspended by Lunarpages for using too many resources. (I’m on their cheapest $6-7 a month plan)
I wonder how much improvement the cookies would have regarding resources. Perhaps I could get around 6000 uniques a day before I start going over allocated resources.
Also I had an idea.. wouldn’t it be better to remove entries for countries you’re not going to use?
I only test for two countries, so having another 100+ countries and hundreds of thousands of extra entries would just be a huge burdern, is it possible?
cheers,
Peter
Nice article. I also wrote a Geotargeting article that discusses the MaxMind database and a free web API. Here’s the link if you want to check it out:
In response to Peter, RE: host resources, you should almost always set up a cookie alternative – as each page load requires your server to go through 1MB of data to figure out where the user is coming from. If each user looks at say 5 pages – this will put a huge burden on the server – which is exactly why your site was closed down. The cookie serves as a good work around to save you having to look the info up EVERY time.
Geo targeting is useful in the instances you have cited, however, with language this is a problem if your native language is different to the location/language your IP address is being identified from. Better to allow customer to choose their language of preference on your site.
Find me on Twitter
I agree, this is covered more over here.
More comments from Patrick AltoftHi, nice idea, but IE doesn’t access the website then. Don’t you know why?
You can import the CSV version of the MaxMind database into MySQL which should help with the resource usage. MySQL is more efficient than having PHP parse a .dat file.
Of course, saving a cookie for repeat visitors to avoid even the MySQL lookup is also a very good idea.
@Suzy Turnbull
Browsers send a language header with every request that is usually based on either the language setting in their OS or the version of the browser that the user downloaded. As you mentioned, choosing a language based on a GeoIP lookup can be fraught with danger. I travel a lot but I still only really know English, even when I’m in Italy or Germany. The language header can also provide fallback languages so if a user indicates that they know Spanish, Portuguese and English in that order, you can try to serve your site in which ever of those languages you have available but you should prefer languages that they know the best.
My language header currently looks like this, even when I am in another country:
Accept-Language: en-us,en;q=0.5
I really should change it to en-gb…
Okay, so once you install the database to MySQL. How do I only show content to Canadian and American visitors?
MaxMind provide some sample code on their website: http://www.maxmind.com/app/csv
I would probably wrap the code they provide in a function with the same name as the one that Patrick used in the example so you can use it like this:
geoip_country_code_by_addr($gi, $REMOTE_ADDR);
MaxMind recommend for speed an disk space usage that their binary format and APIs be used rather than importing into MySQL. I’m dubious that this would be faster but since it’s at least two years since I did any benchmarks on this I can’t be sure. Be sure to leave a comment if you do any benchmarking.
One useful hint if you are importing this into a MySQL database: Don’t forget to make the IP number fields BIGINTs rather than just plain INTs. Otherwise the last 1/3rd of the IP address space will all map to the same location.
I have just released (commercial, but free licenses available) geotargeting plugin for WordPress: http://thewordpress.net/plugins/geotargeting/
Basically it's just a wrapper around free maxmind database, but with nice wordpress integration: country-based contents, redirects by country, country personalization (country name & flag).
{ 3 trackbacks }
Leave a Comment (registration is optional)