forked from Zakay/geoip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
39 lines (29 loc) · 970 Bytes
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
== ABOUT ==
This PHP extension allows you to find the location of an IP address - City, State,
Country, Longitude, Latitude, and other information as all, such as ISP and connection type.
To compile it, you will need to have the GeoIP c library installed.
Forked from pecl.php.net/package/geoip (1.0.7)
== CHANGELOG ==
* Added geoip_netspeedcell_by_name
* Added geoip_domain_by_name
* Added geoip_asnum_by_name
* Added geoip_country_code_by_addr
* Added geoip_country_code3_by_addr
* Removed NOTICE errors when adress isn't found, returning FALSE is enough
* Added geoip_setup_custom_directory
* PHP 5.4 compatibility
== INSTALL ==
OSX (MacPorts):
sudo port install libgeoip
Then after unpacking:
phpize
./configure --prefix=/opt/local --with-php-config=/opt/local/bin/php-config
make
sudo make install
Ubuntu:
sudo apt-get install libgeoip-dev
Then after unpacking:
phpize
./configure --with-php-config=/usr/bin/php-config
make
sudo make install