Contact Form vCard selection appears in menu but no options are visible once it is selected. (WP 5.2.3).
]]>Hi, Getting the error that it is not uploaded for security reasons? Help please…..thanks.
]]>I tried the plugin to allow vcf upload but seems not to work anymore?
WP 5.2.3
Uploading VCF files gets me the error “Sorry, this file type is not permitted for security reasons.”
Not working on Core Versions 4.9.9/5.0.3
It is working on Core Version 4.9.5
The filter function to add the mime types doesn’t help.
add_filter(‘upload_mimes’, function( $existing_mimes = array() ) {
$existing_mimes[‘vcf’] = ‘text/x-vcard’;
return $existing_mimes;
});
The define(‘ALLOW_UNFILTERED_UPLOADS’, true); in wpconfig helps but this is not a solution.
Thoughts?
]]>Hi, we recently looked at your plugin and noticed it was using the deprecated “text/x-vcard” MIME type. Most browsers are now in conformance with RFC 6350 and utilize the MIME of “text/vcard” – so this plugin doesn’t work in those browsers.
Since text/x-vcard is a deprecated type and we’re actually now seeing adoption of the text/vcard MIME type, please consider making the switch.
RFC 6350: https://tools.ietf.org/html/rfc6350
]]>