diff --git a/sections/tools/misc/update_geoip.php b/sections/tools/misc/update_geoip.php index b4cbf2a2..c1559097 100644 --- a/sections/tools/misc/update_geoip.php +++ b/sections/tools/misc/update_geoip.php @@ -7,12 +7,12 @@ View::show_header(); //requires wget, unzip commands to be installed -shell_exec('wget http://geolite.maxmind.com/download/geoip/database/GeoLiteCity_CSV/GeoLiteCity_'.date('Ym').'06.zip'); +shell_exec('wget http://geolite.maxmind.com/download/geoip/database/GeoLiteCity_CSV/GeoLiteCity_'.date('Ym').'04.zip'); //shell_exec('wget http://debug.what.cd/GeoLiteCity_'.date('Ym').'01.zip'); -shell_exec('unzip GeoLiteCity_'.date('Ym').'06.zip'); -shell_exec('rm GeoLiteCity_'.date('Ym').'06.zip'); +shell_exec('unzip GeoLiteCity_'.date('Ym').'04.zip'); +shell_exec('rm GeoLiteCity_'.date('Ym').'04.zip'); -if(($Locations = file("GeoLiteCity_".date('Ym')."06/GeoLiteCity-Location.csv", FILE_IGNORE_NEW_LINES)) === false) { +if(($Locations = file("GeoLiteCity_".date('Ym')."04/GeoLiteCity-Location.csv", FILE_IGNORE_NEW_LINES)) === false) { error("Download or extraction of maxmind database failed"); } array_shift($Locations); @@ -31,7 +31,7 @@ echo "There are ".count($CountryIDs)." CountryIDs"; echo "
"; -if(($Blocks = file("GeoLiteCity_".date('Ym')."06/GeoLiteCity-Blocks.csv", FILE_IGNORE_NEW_LINES)) === false) { +if(($Blocks = file("GeoLiteCity_".date('Ym')."04/GeoLiteCity-Blocks.csv", FILE_IGNORE_NEW_LINES)) === false) { echo "Error"; } array_shift($Blocks);