Okay
  Public Ticket #1202453
import dae or obj extensionss
Closed

Comments

  •  1
    DVign started the conversation

    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

  • [deleted] replied

    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:

    // Support dae file format
    function 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.