You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current license key validation fails on new license keys from MaxMind, e.g., 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. It appears that the current validation requires the keys to match ^[A-Za-z0-9]{16}$:
$message = __('The license key usually is a 16-char alphanumeric string. Are you sure this is the right key?', 'geoip-detect');
$message .= '' . __('This key contains characters other than a-z and 0-9.', 'geoip-detect');
}
if ($message) return$message;
returntrue;
}
The new license keys match [A-Za-z0-9]{6}_[A-Za-z0-9]{29}_mmk. The length may also increase in the future. See these release notes for more information.
The text was updated successfully, but these errors were encountered:
The current license key validation fails on new license keys from MaxMind, e.g.,
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
. It appears that the current validation requires the keys to match^[A-Za-z0-9]{16}$
:geoip-detect/data-sources/manual.php
Lines 139 to 156 in d42e18c
The new license keys match
[A-Za-z0-9]{6}_[A-Za-z0-9]{29}_mmk
. The length may also increase in the future. See these release notes for more information.The text was updated successfully, but these errors were encountered: