I am trying to install Maxmind's GeoIP2. I did everything by their instructions and I still get this annoying error:
Fatal error: Class 'GeoIp2\Database\reader' not found in C:\Program Files\*\*\localweb\GeoIp2\index.php on line 19
this is how the script looks like inside index.php:
<?php
require_once 'vendor/autoload.php';
use GeoIp2\Database\reader;
// This creates the Reader object, which should be reused across
// lookups.
$reader = new Reader('C:/Program Files/*/*/localweb/GeoIp2/Database/GeoLite2-Country.mmdb');
$record = $reader->country('128.101.101.101');
?>
Anybody can help please ?
Try changing:
use GeoIp2\Database\reader;
to:
use GeoIp2\Database\Reader;