Tagged Questions
GeoIP is the process of analyzing an IP address and determining the geographical location of that end point.
8
votes
4answers
9k views
How to get City, Country, and Country Code for a particular IP Address in ASP.NET?
I am having an application in which i am storing user ip address. But now i want to store the City, Country and Country Code of the user on the basis of their ip addresses. So I am able to get the ...
5
votes
1answer
162 views
GeoIP table join with table of IP's in MySQL
I am having a issue finding a fast way of joining the tables looking like that:
mysql> explain geo_ip;
+--------------+------------------+------+-----+---------+-------+
| Field | Type ...
5
votes
3answers
561 views
PHP Regex for IP to Location API
How would I use Regex to get the information on a IP to Location API
This is the API
http://ipinfodb.com/ip_query.php?ip=74.125.45.100
I would need to get the Country Name, Region/State, and City.
...
5
votes
4answers
2k views
What is the best provider of geoip data
For our company's website and product we're searching for a high-quality, reliable and cost-effective geoip solution. The interesting geoip properties are country and company.
We need the possibility ...
4
votes
1answer
379 views
using GeoIP with django on appengine
I tried geodjango recently, and worked just fine for me, even without installing that C library.
But when I used the same project in the appengine sdk, it fails whenever it tries to import the GeoIP ...
3
votes
3answers
96 views
How does one detect Middle East visitors via PHP?
I'm looking for a clear cut way to detect if a visitor is from the Middle East. If they are, I need to display a different header image (the current one has a hog in it, so it is frowned upon).
I ...
2
votes
2answers
257 views
Geo Location based on IP Address - PHP
We're looking for a fast and accurate way to get the visitors location based on their IP.
We have tried ipinfodb.com but their API made our website severely lag when making the API call.
What other ...
2
votes
1answer
506 views
Error setting up geoip on Django
I'm trying to add geolocation to a website, using GeoIP. I followed the instructions on Django docs, but I get this error: ImproperlyConfigured: Error importing middleware middleware: "cannot import ...
2
votes
1answer
522 views
Best way to get user nearest city? Python/Django
I have a website with a limited number of cities in the database, and need to show the user the nearest city to his current location.
I can get the location by MaxMind API, but I want to get the ...
2
votes
3answers
510 views
What's the most accurate way to determine user geolocation in the browser?
I found a few examples suggesting Google AJAX APIs.
This link typifies the advice I have found so far: http://briancray.com/2009/05/29/find-web-visitors-location-javascript-google-api/
However, the ...
2
votes
2answers
571 views
How accurate is GeoIP and $_SERVER['REMOTE_ADDR']?
I make a website for my girlfriend and she recently wants to know who is accessing her site. So I use the database of MindMax and I got the list and count of access by country.
However, after ...
1
vote
2answers
15 views
Is there a website that provides an IP-database to get all IPs for a specific country?
Maxmind offers a free CSV-Database[1] to see which country a specific IP belongs to. However, in most cases you wouldn't want to detect any country for an IP, but rather see if an IP belongs to this ...
1
vote
1answer
27 views
location based inline popup jquery geoio
im trying to add a location based popup to a popup i already have but i dont want both of them to show ie. if there is the USA or Canada i want them to see one popup and if there in the rest of the ...
1
vote
3answers
45 views
geoIP find country from ASP.NET
From an ASP.NET page I'm able to retrieve the client's IP address (at least the apparent one).
I would like to know if there is a free service that I can access from code-behind, that will return the ...
1
vote
1answer
49 views
Grails geo - location initializer
We are developing our project in grails. And we want to show data to user according to the country from where they are accessing our website.
I have a field where I store the country location. By ...
1
vote
3answers
74 views
How to determine remote computer location , given its IP (without paying)?
I've been working on this project for a while. I found out that there any many free databases which map between IP number (sort of manipulation of the IP adress) to a long and latitude cordinates. ...
1
vote
1answer
171 views
How to get country from IP
Trying to get country from IP address.
I've read a few articles online and a few answers on SO. So far have found Geoip which can use http://www.maxmind.com database.
The example at this link ...
1
vote
2answers
267 views
GeoIP database/API providers other than MaxMind
I'm looking for GeoIP database/API providers. I need a local database with C# API with country level accuracy (for now). So far the only one that I find is MaxMind.
Not that there's anything wrong ...
1
vote
0answers
72 views
What are the pro/cons of these geolocation tools/services? [closed]
What are the pro/cons of the ollowing GeoLocation tools/services?
W3C GeoLocation API
SimepleGeo.com
MaxMind.com (GeoIP)
Loki.com by SkyHook Wireless (WiFi/cell tower triangulation)
Google's ...
1
vote
2answers
354 views
How to do a geoip lookup in php?
All tutorials I have seen have pointed towards functions like geoip_record_by_name. I always get this error: Fatal error: Call to undefined function geoip_record_by_name() in ...
1
vote
2answers
97 views
How to choose closest/fastest mirror in Python?
I've been thinking about how to implement mirror picking in Python. When I call on service API I get response with IP address. Now I want to take that address and check if it's close to me or not. If ...
1
vote
1answer
235 views
find people within X miles of my city
I am working on a dating application in PHP:
My application has a search page that searches suitable user profiles within certain distance of a person's location (need to specify the no. of miles/kms ...
1
vote
2answers
372 views
Different Drupal front page from different country
I have a drupal site, and i want to redirecting visitors to a different page based on the country.
I have this code:
require_once "Net/GeoIP.php";
$geoip = Net_GeoIP::getInstance("Net/GeoIP.dat");
...
1
vote
1answer
345 views
gentoo geoip installation
I try to install the geoip extension through SSH on my gentoo server.
I did:
emerge Geo-IP
: OK
pecl install geoip
: OK
geoiplookup www.bbc.co.uk
: gives me
GeoIP Country Edition: ...
1
vote
1answer
279 views
How accurate is geo ip data on the U.S. state level?
We would like to implement slightly different behavior in our web application for those who visit from a certain state (Florida) vs. those in the rest of country (and world).
It's not critical that ...
1
vote
1answer
186 views
GeoIP nearest (closest) country
Guys i have a little problem, i tried to find some examples on GeoIP based system that expands searches based on nearest neighbor countries. For example the visitor is from UK and tries to find IPs ...
1
vote
1answer
262 views
Global proxy for use in debugging GeoIP from multiple countries
I'm looking for a solution to test an application's response to people around the globe, based on IP. This would be a service where i could choose a country (or at least continent/some countries such ...
1
vote
2answers
667 views
Error installing geoip_city gem
I keep getting an error when trying to install the geoip_city gem. I've already installed the GeoIP C library to /opt/GeoIP, but the gem doesn't seem to pick it up. I've tried:
sudo gem install ...
1
vote
1answer
765 views
Where to find great proxy servers for testing GeoIP services?
We would like to test a GeoIP-Service. Therefore we need to go to the site with an IP from another country.
There are a lot of free proxy lists like http://nntime.com/proxy-country/
The problem with ...
1
vote
1answer
797 views
How to use google translate to translate website automatically using geoip
I have been looking around the internet for a script which would use google translate api to translate a website automatically through a geoip script without the need of clicking translate button. ...
1
vote
5answers
475 views
free geolocation geoip, are they viable?
I'm trying to get a visitor's location based on their IP, pretty common stuff. My research so far shows that there's a database from MaxMind that costs $370 + $90/month... not the type of cost I can ...
1
vote
1answer
143 views
Geo input - how to input, store and display locations
I would like to store a user enter location and could do with some pointers on how to go about it.
Input - I wish to allow the user to enter a location using either a map (eg Google maps) or text ...
1
vote
1answer
125 views
Serving east/west coasts with Geoipdns and MaxMind GeoLite data
I want to serve east (west) coast visitors with my Virginia (California) server. To do so, I plan to use Geoipdns and the IP-to-location mappings from MaxMind. MaxMind provide two datasets for free: ...
1
vote
1answer
204 views
AWStats and Extra Section with GeoIP country data
I'm new to AWStats, so if this question is unclear, please ask for the needed information.
I'm using AWStats v6.9, with the GeoIP plug-in running successfully. I would like to write an Extra Section ...
0
votes
0answers
3 views
proxy service for testing geoip redirects?
There appears to be an abundance of proxy services for anonymous web browsing. I need one that has many countries so I can test some geoip redirection. I'm willing to pay, and I don't care about it ...
0
votes
1answer
17 views
htaccess conditional rewrite rule with mod_GeoIP
I'm using mod_geoip for my ecommerce site to redirect customers from Australia to a different storefront on the same server. The store is located at root/store/ and I want them to be redirected to ...
0
votes
1answer
17 views
use Django GeoIP database for models
In my App I use django geoIP to locate users and it does its job well, but I also need to include the location data in my users model. In my users model every user will have their ...
0
votes
3answers
32 views
Does PHP's GeoIP class's methods always come true?
I want to implement a country-based web-page. If incoming request is from USA, I want my script to redirect the user to usa.html; if it is from Argentina, then to arg.html and so on. But I want it to ...
0
votes
0answers
45 views
Where can I find help for my Varnish default.vcl file?
I am having trouble with inline C block and GeoIP. Not exactly sure where my problem is. To my knowledge everything is installed and running fine. I can use GeoIP C API for country code, but not for ...
0
votes
0answers
115 views
Getting geoip location for the longitude and latitude
I am using geoip module to store get the longitude and latitude for a particular place and then store these values in mongodb.the code that i use is
geo.geocoder(geo.google, address, ...
0
votes
0answers
30 views
Automatically update GeoIPv6.dat database file
I am looking for a way to automatically update a GeoIPv6.dat file that I have on my webserver, which is used for GeoIP lookups, automatically.
Short of scraping this page, checking for the latest ...
0
votes
1answer
49 views
geopip record is always null?
I have access to the GeoIP.dat file through my current host but every IP I enter is empty. Any idea what might be wrong or a way to troubleshoot it? I have php errors on but I don't see anything ...
0
votes
1answer
71 views
What is the best way to debug a VCL file?
I am writing inline C in my VCL file. More specifically I am using Maxmind's GeoIP database to geocode a visitor's IP. I have everything installed, I have followed all the wiki examples for GeoIP ...
0
votes
5answers
68 views
How to decide user's language
I am looking for the best way to decided web user's language so that content can be presented in his native language. I want to know about pros and cons of different techniques.
Few options I am ...
0
votes
1answer
44 views
Subquery and Indexing for IP Information
I'm having a problem trying to cross-reference between a table with user information and a table with geolocation data (from GeoIP's database).
I have the IP address in standard format (not integer) ...
0
votes
0answers
74 views
using GeoIP on Haproxy
How do I connect to the database geoip Haproxy?
an example.
Haproxy decides at ip country and city, and modifies http headers for transmission to the backends:
reqadd X-Country:\ Country
0
votes
2answers
32 views
Plotting graph on top of World map
I'm trying to plot a graph representing a P2P network on top of a world map. I want to be able to draw vertices and edges, and it has to work with several thousands of veritces/edges on a map.
Is ...
0
votes
1answer
30 views
Is MaxMind's GeoIP C Implementation Thread Safe?
Assume that a process is using the MaxMind GeoIP C API in many separate threads. Are concurrent calls to GeoIP_record_by_addr safe? Assume that this is the only process concurrently accessing the data ...
0
votes
1answer
20 views
how does DNSBL is connected to geo-location?
I've read in wikipedia that one of the ways to obtain geolocation infomration for a given IP is done using DNSBL.
the following link is :
http://en.wikipedia.org/wiki/Geolocation_software#Data_sources
...
0
votes
0answers
101 views
Compile Gem dyld: lazy symbol binding failed: Symbol not found:
I have some issues on OSX latest to get Maxmind C API to work correctly
The website of maxmind state to download the latest version wich I Did. Also upgraded to ruby 1.9.3-p0 and have the latest ...