You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
432 B

  1. #!/usr/bin/php
  2. <?php
  3. require('conf.php');
  4. if (!array_key_exists('GeoLite2-LicenseKey', $config)) {
  5. print "No LicenseKey for MaxMind GeoLite2 database set. Not downloading database.";
  6. exit(0);
  7. }
  8. @mkdir("data/GeoIP");
  9. chdir("data/GeoIP");
  10. system("wget -O- 'https://download.maxmind.com/app/geoip_download?edition_id=GeoLite2-City&license_key={$config['GeoLite2-LicenseKey']}&suffix=tar.gz' | tar --strip-components=1 -xvzf -");