Global web icon
github.com
https://github.com/yellowtree/geoip-detect/blob/de…
geoip-detect/README.md at develop · yellowtree/geoip-detect
If you use Maxmind "Automatic download" then you need to upgrade to this plugin version in order to continue to receive database update. The Database license changed and you will need to register at their website and agree to the EULA.
Global web icon
github.com
https://github.com/yellowtree/geoip-detect/blob/de…
geoip-detect/init.php at develop · yellowtree/geoip-detect
if ($plugin_page == GEOIP_PLUGIN_BASENAME && isset ($_POST ['action']) && $_POST ['action'] == 'update') { // Skip because maybe he is currently updating the database
Global web icon
github.com
https://github.com/yellowtree/geoip-detect/blob/de…
geoip-detect/changelog.txt at develop - GitHub
* FIX: The automatic update of Maxmind Geoip2 Lite City database was fixed. * FIX: Always try to fill in more information into the country information from the GeoNames-DB.
Global web icon
github.com
https://github.com/yellowtree/geoip-detect/issues/…
Update failed. Forbidden · Issue #35 · yellowtree/geoip-detect
The update is working again without me changing anything - maybe they are still configuring their cloudflare setup. Let me know if the problem persists on your end.
Global web icon
github.com
https://github.com/yellowtree/geoip-detect/issues/…
Maxmind Parsing Error · Issue #11 · yellowtree/geoip-detect
It throws this exception when the .mmdb database is put in the /uploads folder (on both the wp-geoip-detect page in the backend, and the frontend page where geoip_detect2_get_info_from_ip () is called).
Global web icon
github.com
https://github.com/yellowtree/geoip-detect/pull/27…
Update dependency symfony/http-foundation to v5.4.46 [SECURITY] #272
Update dependency symfony/http-foundation to v5.4.46 [SECURITY] #272 renovate wants to merge 1 commit into develop from renovate/packagist-symfony-http-foundation-vulnerability
Global web icon
github.com
https://github.com/yellowtree/geoip-detect/blob/de…
geoip-detect/geoip-detect.php at develop - GitHub
* Set to TRUE if the plugin should never auto-update the Maxmind City Lite database.
Global web icon
github.com
https://github.com/yellowtree/geoip-detect/issues/…
[QUESTION] Is there a function to get a list of all the ... - GitHub
Hi, I'm implementing plugin that will offer user an option to choose countries from a list of countries. I would like to know if there is a function to get a list of all the countries in a database as array, ideally with ISO code and ful...
Global web icon
github.com
https://github.com/yellowtree/geoip-detect/pull/15…
Update dependency parcel to v2.0.0#154 - GitHub
Please merge this manually once you are satisfied. ♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 Ignore: Close this PR and you won't be reminded about this update again.
Global web icon
github.com
https://github.com/yellowtree/geoip-detect/blob/de…
geoip-detect/admin-ui.php at develop - GitHub
{ case 'update': $registry->setCurrentSource ('auto'); $s = new \YellowTree\GeoipDetect\DataSources\Auto\AutoDataSource (); $ret = $s->maxmindUpdate (); $c = new \YellowTree\GeoipDetect\Lib\RetrieveCcpaBlacklist (); $ret2 = $c->doUpdate (); if ($ret === true && $ret2 === true) { $messages [] = __ ('Updated successfully.', 'geoip-detect'); } else {