I am trying this method right now.
Started out with 1 video just to get my working-flow idea's.
I also thought of a little tune-up just to maximize income.
Once accepted in CR i did see they got a lot of country related offers.
Some offers pay way more for specific countries.
Conclusion:
If you do have web hosting and not only a domain check out the following.
1. Download the geoPlugin:
http://www.geoplugin.com/_media/webservices/geoplugin.class.php.tgz?id=webservices:php&cache=cache
2. Upload the geoplugin.class.php to your servers root.
3. Create a index.php file
4. Add the following code to your index.php file:
PHP:
<?phprequire_once('geoplugin.class.php');
$geoplugin = new geoPlugin();
$geoplugin->locate();
$country_code = $geoplugin->countryCode;
switch($country_code) {
case 'US':header('Location: **LINK TO OFFER HERE**');exit;
case 'CA':header('Location: **LINK TO OFFER HERE**');exit;
default: header('Location: **LINK TO OFFER HERE**');exit;
}
?>
Voilla.
Now you can redirect all your traffic to the best offer available.
This way you can also look for different offers and if you for example have a way better offer for The Netherlands which CrakRevenue does not have than it is possible to redirect dutchies to the offer from another affiliate network.
To add a country simply copy the part from
case to exit and change the country code ( US ) to any other country code (for ex. NL ) to redirect to that country.
As for your information only USA and Canada is listed in this code atm. Again simply copy a line and paste it, change the country code and add your offer link.
The last one is: default. Here you have to put the offer that people will get redirected to if their country is not listed by you.
Cheers!