Difference between revisions of "GeoIP2"

From TMM Wiki
Jump to navigationJump to search
Line 4: Line 4:
  
  
Download and install the GeoIP Country database from Maxmind.  
+
Download and install the GeoIP2 Country database from Maxmind.  
  
 
You can either download the [https://dev.maxmind.com/geoip/geoip2/geolite2/ free] version of the database or [https://www.maxmind.com/en/geoip2-country-database purchase] the commercial version
 
You can either download the [https://dev.maxmind.com/geoip/geoip2/geolite2/ free] version of the database or [https://www.maxmind.com/en/geoip2-country-database purchase] the commercial version
Line 11: Line 11:
  
 
You will then need to either [https://github.com/maxmind/mod_maxminddb install] and configure the geoip2 apache module or use the php library in NATS.
 
You will then need to either [https://github.com/maxmind/mod_maxminddb install] and configure the geoip2 apache module or use the php library in NATS.
 +
 +
==NATS Setup for GeoIP2 Apache module==
 +
 +
Install the geoip2 apache module according to the setup directions [https://github.com/maxmind/mod_maxminddb here]
 +
 +
Then go to Config Admin -> Surfer section -> IP_FILTER and set to 'Geo-IP2'
  
 
==NATS Setup for GeoIP2 PHP library==
 
==NATS Setup for GeoIP2 PHP library==
  
This file needs to be on your NATS installation in a path that is accessible to NATS
+
The .mmdb file needs to be on your server in a path that is accessible to NATS
  
The path will need to be specified in config->surfer->tracking GEOIP2_PHP_DATABASE_LOCATION
+
The path will need to be specified in Config Admin -> Surfer section -> GEOIP2_PHP_DATABASE_LOCATION
  
You will then switch the IP_FILTER to GEOIP2_PHP and store your changes
+
You will then switch the IP_FILTER to 'Geo-IP2 PHP' and store your changes
  
  
== Test Code ==
+
== Test Code for GeoIP2 PHP library ==
The following PHP code will help you test GeoIP.  Put it in a file, put the file on your webserver, and load its URL. It should print your country's name.
+
The following PHP code will help you test GeoIP.  Put it in a file, put the file on your webserver in the nats www directory, and load its URL. It should print your country's name.
  
 
<pre>
 
<pre>

Revision as of 15:46, 13 February 2019

NATS 4
Members Admin
The Members Admin
View Member Details
Add Member
MySQL Auth
Mod Authn DB
Multisite Access
Member Logging
Member Password Retrieval
OpenID Connect
Mod Auth OpenIDC
ID Numbers
NATS Configuration Admin
The Configuration Admin
Log Admin Activity
IP Address Filtering
MEMBER_EXPIRE_PAD
SKIP COUNTRIES
Fraud Configuration
Email Configuration
Affiliate Signup Email
Affiliate Postback
Affiliate Postback NEW
Affiliate Analytics
Throttling
NATS4 Terms of Service feature
GeoIP2


Download and install the GeoIP2 Country database from Maxmind.

You can either download the free version of the database or purchase the commercial version

The main file you need is the the 'Country' .mmdb file

You will then need to either install and configure the geoip2 apache module or use the php library in NATS.

NATS Setup for GeoIP2 Apache module

Install the geoip2 apache module according to the setup directions here

Then go to Config Admin -> Surfer section -> IP_FILTER and set to 'Geo-IP2'

NATS Setup for GeoIP2 PHP library

The .mmdb file needs to be on your server in a path that is accessible to NATS

The path will need to be specified in Config Admin -> Surfer section -> GEOIP2_PHP_DATABASE_LOCATION

You will then switch the IP_FILTER to 'Geo-IP2 PHP' and store your changes


Test Code for GeoIP2 PHP library

The following PHP code will help you test GeoIP. Put it in a file, put the file on your webserver in the nats www directory, and load its URL. It should print your country's name.

<?php
       include_once('../vendor_includes/geoip2.phar');
       $reader = new GeoIp2\Database\Reader('<PATH_TO_DB_FILE.mmdb>');
       $record = $reader->country($_SERVER['REMOTE_ADDR']);
       $country = $record->country->isoCode;
       echo"$country is country";

Note: Please be sure to perform this test after you install or update Maxmind's GeoIP.

Optional Extension

As stated in their docs: "[This extension] dramatically increase the performance of lookups in GeoIP2 or GeoLite2 databases"

Download this as either standalone or via composer.

Then download this and follow the instructions on the site to configure this library. (Note you will need to have a compiler such as GCC installed on your server).

$ ./configure
$ make
$ make check
$ sudo make install
$ sudo ldconfig

Once the two packages are installed, you will want to run the commands in the "Installing Extension" section


cd ext
phpize
./configure
make
make test
sudo make install

Finally, add "extension=maxminddb.so" to your php.ini file and restart PHP

See Also