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 12-05-2008, 10:17 AM   #1
gleem
Confirmed User
 
gleem's Avatar
 
Industry Role:
Join Date: Jun 2001
Location: Sunny Land
Posts: 5,593
Need my own GEOIP thumb generator for dating banners

hey, anyone know where to get GEOIP thumb builder script similar to all the dating sites? I want to build my own so I Can use some hardcore thumbs that are of my own models so I have all the docs.

Is there a boxed version of the script? Or does anyone have a script made they can sell me or do a little custom work on?
__________________




Contact me: \\// E: webmaster /at/ unprofessional.com
gleem is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 12-05-2008, 10:20 AM   #2
spacedog
Yes that IS me. Bitch.
 
Industry Role:
Join Date: Nov 2001
Posts: 14,149
check out maxmind.com for GeoIp Detection
spacedog is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 12-05-2008, 10:21 AM   #3
Kristian
Confirmed User
 
Kristian's Avatar
 
Industry Role:
Join Date: Aug 2003
Posts: 3,733
I might be able to help.
Kristian is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 12-05-2008, 10:27 AM   #4
gleem
Confirmed User
 
gleem's Avatar
 
Industry Role:
Join Date: Jun 2001
Location: Sunny Land
Posts: 5,593
Quote:
Originally Posted by spacedog View Post
check out maxmind.com for GeoIp Detection

Yeah, I just don't know how to integrate it into a geo thumb builder


Quote:
Originally Posted by Kristian View Post
I might be able to help.
Great, as long as I don't have to promote DG
__________________




Contact me: \\// E: webmaster /at/ unprofessional.com
gleem is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 12-06-2008, 05:32 AM   #5
borked
Totally Borked
 
borked's Avatar
 
Industry Role:
Join Date: Feb 2005
Posts: 6,284
what do you mean "a geo thumb builder"?

use this PHP Class to use maxmind's db without the hassle of having to install it

Then surely you can find a way to use the variables to build your geo thumbs...

if not, hit me up and I'll help you, cos I don't understand what it is you want to do
__________________

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 12-06-2008, 05:37 AM   #6
borked
Totally Borked
 
borked's Avatar
 
Industry Role:
Join Date: Feb 2005
Posts: 6,284
Oh, ok, yeah I see what you mean. That's really easy - download that class I linked you to then something like this:

Code:
<?php
require_once('geoplugin.class.php');
$geoplugin = new geoPlugin();
$geoplugin->locate();

echo "<div><img src='/images/babe1.jpg' width=100 height=100 /><br />Pamela, age:26, Location: " . $geoplugin->city . "</div>";
voila.
__________________

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 12-06-2008, 10:52 AM   #7
borked
Totally Borked
 
borked's Avatar
 
Industry Role:
Join Date: Feb 2005
Posts: 6,284
Sound of one hand clapping?

Anyway, what will work very well for these kind of ads, is the "nearby" function, so that not all the ads simply display the exact location of the visitor - much more authentic.

Code:
<?php
require_once('geoplugin.class.php');
$geoplugin = new geoPlugin();
$geoplugin->locate();

echo "<div><img src='/images/babe1.jpg' width=100 height=100 /><br />Pamela, age:26, Location: " . $geoplugin->city . "</div>";

$nearby = $geoplugin->nearby();
if ( is_array($nearby) ) {
  foreach($nearby as $key => $array) {
    echo "<div><img src='/images/babe{$key}.jpg' width=100 height=100 /><br />Age:26, Location: " . $array['geoplugin_place'] . "</div>";
  }
}
__________________

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 12-06-2008, 10:59 AM   #8
Pete-KT
Workin With The Devil
 
Industry Role:
Join Date: Oct 2004
Location: West Bloomfield, MI
Posts: 51,532
Hey Gleem hit me up I already got one of these built, and can modify it anyway u need.
Pete-KT is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 12-07-2008, 10:11 PM   #9
gleem
Confirmed User
 
gleem's Avatar
 
Industry Role:
Join Date: Jun 2001
Location: Sunny Land
Posts: 5,593
Quote:
Originally Posted by borked View Post
what do you mean "a geo thumb builder"?

use this PHP Class to use maxmind's db without the hassle of having to install it

Then surely you can find a way to use the variables to build your geo thumbs...

if not, hit me up and I'll help you, cos I don't understand what it is you want to do

Problem is I'm not a programmer... thanx for helping though.
__________________




Contact me: \\// E: webmaster /at/ unprofessional.com
gleem is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 12-07-2008, 10:25 PM   #10
gleem
Confirmed User
 
gleem's Avatar
 
Industry Role:
Join Date: Jun 2001
Location: Sunny Land
Posts: 5,593
Quote:
Originally Posted by Pete-KT View Post
Hey Gleem hit me up I already got one of these built, and can modify it anyway u need.
Will be hitting you up Monday morn
__________________




Contact me: \\// E: webmaster /at/ unprofessional.com
gleem is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 12-07-2008, 11:56 PM   #11
borked
Totally Borked
 
borked's Avatar
 
Industry Role:
Join Date: Feb 2005
Posts: 6,284
Quote:
Originally Posted by gleem View Post
Problem is I'm not a programmer... thanx for helping though.


see http://www.gfy.com/showthread.php?t=873995

you don't need to be a programmer for it, just add your own photos to the images directory, and make up as many names as there are photos
__________________

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 12-08-2008, 10:29 AM   #12
gleem
Confirmed User
 
gleem's Avatar
 
Industry Role:
Join Date: Jun 2001
Location: Sunny Land
Posts: 5,593
I read the thread, still a bit fuzzy about where to get the database and how to set it up, hit me up on AIM via sig, added ya but refuses my messages.
__________________




Contact me: \\// E: webmaster /at/ unprofessional.com
gleem is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 12-08-2008, 10:32 AM   #13
DutchTeenCash
I like Dutch Girls
 
DutchTeenCash's Avatar
 
Join Date: Feb 2003
Location: dutchteencash.com
Posts: 21,684
ask quantum-x he has an amazing program that makes the banners you are looking for

like this

DutchTeenCash is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 12-08-2008, 10:35 AM   #14
DutchTeenCash
I like Dutch Girls
 
DutchTeenCash's Avatar
 
Join Date: Feb 2003
Location: dutchteencash.com
Posts: 21,684
52-779-009 is his icq
DutchTeenCash 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.