If you try to import GeoDirectory settings you may see “Files of this type are not allowed.”
Here is a code snippet you can add with the code snippet plugin to temporarily allow this file type to be uploaded.
function cc_mime_types($mimes) {
$mimes['json'] = 'application/json';
$mimes['svg'] = 'image/svg+xml';
return $mimes;
}
add_filter('upload_mimes', 'cc_mime_types');