Osclass forums

Support forums => Suggestions => Topic started by: epicrevolt on September 23, 2011, 08:56:16 am

Title: Location based on IP
Post by: epicrevolt on September 23, 2011, 08:56:16 am
I thought it would have actually been a core feature of OSClass. I mean how cool would it be if it could detect your location based on your IP address. of course the user would have the option to change that location, but it would be a great improvement if the location could automatically be filled in, or not allow the user to choose a location at all.
Such as a site I am developing. It would improve workflow if the user didn't have to type in a location everytime. I don't want the users to be able to choose, I want the IP to find their location.
It's a relatively simple idea, but you get the point.
UPDATE:
Doing some research I found IP Info DB http://www.ipinfodb.com/ip_location_api.php
I am integrating it into my website, but I don't know how I would make a plugin version of it, currently it is only in the theme, auto-filling in the boxes. It would be cool if someone could do some javascript/jquery magic on this.
Title: Re: Location based on IP
Post by: _CONEJO on September 23, 2011, 10:18:54 am
Hi epicrevolt,

It's a great idea, will take a look at it. If you already develop something, we could help you finish it.

Thanks
Title: Re: Location based on IP
Post by: epicrevolt on September 25, 2011, 09:00:46 am
It seems that since mine automatically fills in the data because I edited the item-post.php, A user can not re-select a location.
I suck at Javascript, so I am just doing what I can.
Title: Re: Location based on IP
Post by: gr8555 on September 01, 2012, 01:12:23 am
Does anyone have a working mod for this? i am very much interested! :)
Title: Re: Location based on IP
Post by: web2graphics on September 01, 2012, 07:36:04 am

me too
Title: Re: Location based on IP
Post by: Legion on October 07, 2012, 01:32:05 pm
it would be great if develope can convert it to plugin
Title: Re: Location based on IP
Post by: lucky_strike on November 16, 2012, 03:03:05 am
wrong data they provide
 Your IP address information

    IP address : 87.217.161.168
    Country : SPAIN
    State/Province : MADRID
    City : MADRID...
im in  gran canaria.
 :)

you should change to google  api.. having 2500 free calls to api its enough...
 ive started a subject here...maybe you could help :)
http://forums.osclass.org/plugins/beginners-guide-how-to-make-a-plugin-plugins-google_ad_locator-search_by_zip/
Title: Re: Location based on IP
Post by: krishields3 on November 20, 2012, 08:57:48 am
Yea... that is a problem with using only the IP. Take myself for example, my actual location is Ridgeway, IA, but my ISP assigns me a public IP from Winona, MN. What you would do if you wanted to go this route is to reverse geocode through google maps the coordinates snagged from the users IP using some source like: www.ipinfodb.com (http://www.ipinfodb.com)

I am currently working on a script which uses the IP to get a guest user coordinates so that I may serve them the most appropriate ads. I require the city and geocode that when a user registers so I have a more accurate representation of where they are located which allows for more accurate ads.   

Basically, all we need to do is something like this:
Code: [Select]
$IP = $_SERVER['REMOTE_ADDR'];
$QU = file_get_contents('http://api.ipinfodb.com/v3/ip-city/?key=YOURKEY&ip=' . $IP);
$Curr_User_Location = GetUserIPLocation($QU);
Code: [Select]
function GetUserIPLocation($QU) {
    $CurrString = "";
    $Counter = 0;
    $LAT = "";
    $LON = "";
    $REG = "";

    for ($c = 0; $c<strlen($QU); $c++) {
        if ($QU[$c] != ";") {
            $CurrString = $CurrString.$QU[$c];
        }
        else {
            if ($Counter == 5) {
                $REG = $CurrString;
            }
            else if ($Counter == 8) {
                $LAT = $CurrString;
            }
            else if ($Counter == 9) {
                $LON = $CurrString;
            }
            $Counter++;
            $CurrString = "";
        }
    }

    $Curr_User = array('d_coord_lat'  => $LAT,
                       'd_coord_long' => $LON,
                       's_region'     => $REG);
   
    return $Curr_User;
}