• No matter what MIME Type I put in for DXF of all the available MIME types for DXF I cannot upload DXF Files without checking the box to just check the extension. I have tried ever single MIME type. Has anyone got this working?

Viewing 1 replies (of 1 total)
  • elena010

    (@elena010)

    function add_dxf_support($mimes) {
        $mimes['dxf'] = 'application/dxf';
        return $mimes;
    }
    add_filter('upload_mimes','add_dxf_support');

    All such plugins have an error – mime type is application/dxf, not image/vnd.dxf. Use the code above.

Viewing 1 replies (of 1 total)
  • The topic ‘DXF Files’ is closed to new replies.