Welcome to the GoFuckYourself.com - Adult Webmaster Forum forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact us.

Post New Thread Reply

Register GFY Rules Calendar
Go Back   GoFuckYourself.com - Adult Webmaster Forum > >
Discuss what's fucking going on, and which programs are best and worst. One-time "program" announcements from "established" webmasters are allowed.

 
Thread Tools
Old 11-14-2008, 06:20 PM   #1
st0ned
Confirmed User
 
st0ned's Avatar
 
Industry Role:
Join Date: Mar 2007
Location: Arizona
Posts: 8,437
[WTB] Geo redirection script for my sites

I currently run a very large number of sites but don't do any kind of geo redirection. I read WG's thread discussing sending the traffic from countries that cannot buy a membership to somewhere that they can. I imagine this would be a great way to add some additional income.

Basically I do not know too much about this since I have never done it before. I am looking for someone who is very familiar with this process to either walk me through setting it up or to put something in place which would allow me to add it to my many sites. I have all of my links go through other URLs so that I can filter my traffic through a script.

I am looking for someone who is VERY knowledgeable in this field, not a simple script. Money is not an issue and I will more than compensate you for your time. Interested parties can contact me at fizuct at gmail dot com, thanks!
__________________
Conversion Sharks - 1,000+ adult dating offers, traffic management, and consistently high payouts.
We will guarantee and beat your current EPC to win your dating traffic!
Skype: ConversionSharks || Email: info /@/ conversionsharks.com
st0ned is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 11-14-2008, 07:25 PM   #2
xsabn
Confirmed User
 
xsabn's Avatar
 
Industry Role:
Join Date: Feb 2007
Location: 203-069-778
Posts: 2,815
bump for you
xsabn is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 11-14-2008, 07:57 PM   #3
st0ned
Confirmed User
 
st0ned's Avatar
 
Industry Role:
Join Date: Mar 2007
Location: Arizona
Posts: 8,437
Quote:
Originally Posted by xsabn View Post
bump for you
Thank you sir. What happened to the CQ project?
__________________
Conversion Sharks - 1,000+ adult dating offers, traffic management, and consistently high payouts.
We will guarantee and beat your current EPC to win your dating traffic!
Skype: ConversionSharks || Email: info /@/ conversionsharks.com
st0ned is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 11-14-2008, 11:29 PM   #4
borked
Totally Borked
 
borked's Avatar
 
Industry Role:
Join Date: Feb 2005
Posts: 6,284
shot you an email with instructions on how to easily achieve this
__________________

For coding work - hit me up on andy // borkedcoder // com
(consider figuring out the email as test #1)



All models are wrong, but some are useful. George E.P. Box. p202
borked is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 11-14-2008, 11:38 PM   #5
SmokeyTheBear
►SouthOfHeaven
 
SmokeyTheBear's Avatar
 
Join Date: Jun 2004
Location: PlanetEarth MyBoardRank: GerbilMaster My-Penis-Size: extralarge MyWeapon: Computer
Posts: 28,609
i can give you some tips. You will need an ip database , this is used to correlate city/country to ip, these change so you basically "rent" a database so you are constantly updated with new data. maxmind.com is a popular one, they include example code to show you how to retrieve the data for your use ( such as redirection ) in your case. If you are familiar with coding a bit you should be able to follow along with the example code, if not you will need someone to set it up.

i emailed you , if you have icq i could walk you thru the setup
__________________
hatisblack at yahoo.com
SmokeyTheBear is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 11-15-2008, 12:04 AM   #6
borked
Totally Borked
 
borked's Avatar
 
Industry Role:
Join Date: Feb 2005
Posts: 6,284
Code:
<html>
<head>
<script language="JavaScript" src="http://www.geoplugin.net/" type="text/javascript"></script>
<script language="javascript">
if( geoplugin_continentCode() == 'AF' ){   document.write("<META HTTP-EQUIV='Refresh' CONTENT='0; URL=http://en.wikipedia.org/wiki/Africa'>"); }
if( geoplugin_continentCode() == 'AS' ){   document.write("<META HTTP-EQUIV='Refresh' CONTENT='0; URL=http://en.wikipedia.org/wiki/Asia'>"); }
if( geoplugin_continentCode() == 'EU' ){   document.write("<META HTTP-EQUIV='Refresh' CONTENT='0; URL=http://en.wikipedia.org/wiki/Europe'>"); }
if( geoplugin_continentCode() == 'NA' ){   document.write("<META HTTP-EQUIV='Refresh' CONTENT='0; URL=http://en.wikipedia.org/wiki/North_America'>"); }
if( geoplugin_continentCode() == 'SA' ){   document.write("<META HTTP-EQUIV='Refresh' CONTENT='0; URL=http://en.wikipedia.org/wiki/South_America'>"); }
if( geoplugin_continentCode() == 'OC' ){   document.write("<META HTTP-EQUIV='Refresh' CONTENT='0; URL=http://en.wikipedia.org/wiki/Oceania'>"); }
if( geoplugin_continentCode() == 'AN' ){   document.write("<META HTTP-EQUIV='Refresh' CONTENT='0; URL=http://en.wikipedia.org/wiki/Antarctica'>"); }
</script>
</head>
</html>
__________________

For coding work - hit me up on andy // borkedcoder // com
(consider figuring out the email as test #1)



All models are wrong, but some are useful. George E.P. Box. p202
borked is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 11-15-2008, 03:11 AM   #7
borked
Totally Borked
 
borked's Avatar
 
Industry Role:
Join Date: Feb 2005
Posts: 6,284
apologies, the above javascript requires registration. The non-registered version is:

<script language="JavaScript" src="http://www.geoplugin.net/javascript.gp" type="text/javascript"></script>

then the rest is the same.

That javascript gives pretty much all maxmind's functionality and then some currency conversion things as well

see http://www.geoplugin.com/
__________________

For coding work - hit me up on andy // borkedcoder // com
(consider figuring out the email as test #1)



All models are wrong, but some are useful. George E.P. Box. p202
borked is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 11-15-2008, 03:50 AM   #8
Iron Fist
Too lazy to set a custom title
 
Join Date: Dec 2006
Posts: 23,400
Looks great borked... props.
__________________
i like waffles
Iron Fist is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 11-15-2008, 03:56 AM   #9
Axel XXX
Confirmed User
 
Axel XXX's Avatar
 
Join Date: Aug 2002
Posts: 6,924
Try IP2Location
__________________
CCBill Sponsors // ccbillsponsors.com // Your #1 Source for CCBill Sponsors!
Axel XXX is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 11-15-2008, 01:00 PM   #10
borked
Totally Borked
 
borked's Avatar
 
Industry Role:
Join Date: Feb 2005
Posts: 6,284
Quote:
Originally Posted by sharphead View Post
Looks great borked... props.
thanks

for those that don't want to use javascript, and are not bothered about the detailed stats tracking with clickheat maps etc you can call one of the web APIs directly.

If you are going to call the scripts from your script, you need to pass the variable "ip" in the string, becaue otherwise it will always resolve your server's IP.

summary of available outputs:

javascript: http://www.geoplugin.net/javascript.gp?ip=xx.xx.xx.xx
php (serialized array): http://www.geoplugin.net/php.gp?ip=xx.xx.xx.xx
xml: http://www.geoplugin.net/xml.gp?ip=xx.xx.xx.xx
json: http://www.geoplugin.net/json.gp?ip=xx.xx.xx.xx

For those that want to use the currency converter output, the default base currency is US$. To set your own base currency, just tag on the variable &base_currency=XXX where XXX is the ISO 4217 3-letter code. eg

http://www.geoplugin.net/xml.gp?ip=x...e_currency=EUR

geoplugin has been running low-key for about 2.5 years now and serves this geo stuff and statistics for 13 sites, a couple of them quite major hitters. The geoplugin.net server calls are all running through C wrappers (except for the clickheat stuff which is PHP) and is extremely fast, serving somewhere in the region of 1-2mill hits per day without breaking sweat (load 0.2-0.4)

Dunno why I bothered with that sales pitch, cos its all well, free ;)


Hope it proves useful and suggestions are always welcome to improve.
__________________

For coding work - hit me up on andy // borkedcoder // com
(consider figuring out the email as test #1)



All models are wrong, but some are useful. George E.P. Box. p202
borked is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 11-15-2008, 01:39 PM   #11
st0ned
Confirmed User
 
st0ned's Avatar
 
Industry Role:
Join Date: Mar 2007
Location: Arizona
Posts: 8,437
Thank you borked and Smokey! I have to scan through my emails and the info contained here, will be getting back to all of you. Again, thanks for the help, and I would still be willing to hook you up.
__________________
Conversion Sharks - 1,000+ adult dating offers, traffic management, and consistently high payouts.
We will guarantee and beat your current EPC to win your dating traffic!
Skype: ConversionSharks || Email: info /@/ conversionsharks.com
st0ned is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Post New Thread Reply
Go Back   GoFuckYourself.com - Adult Webmaster Forum > >

Bookmarks



Advertising inquiries - marketing at gfy dot com

Contact Admin - Advertise - GFY Rules - Top

©2000-, AI Media Network Inc



Powered by vBulletin
Copyright © 2000- Jelsoft Enterprises Limited.