Comments 1DVign started the conversationJune 11, 2017 at 9:57amI need to import 3d image in a .dae fileformat. I entered in te settings log that dae is an excepted fileformat but still get error[deleted] repliedJune 12, 2017 at 10:02amHi DVign,Kalium doesn't check for mime_type so I suggest you to try any plugin to enable it.Consider adding this code in functions.php: // Support dae file formatfunction upload_mimes_dae_support($mime_types){ $mime_types['dae'] = 'model/vnd.collada+xml'; return $mime_types;}add_filter( 'upload_mimes', 'upload_mimes_dae_support', 10 );This should allow uploading .dae file extension. Sign in to reply ...
I need to import 3d image in a .dae fileformat. I entered in te settings log that dae is an excepted fileformat but still get error
Hi DVign,
Kalium doesn't check for mime_type so I suggest you to try any plugin to enable it.
Consider adding this code in functions.php:
This should allow uploading .dae file extension.