This forum is a community forum meant for users of the plugin to collaborate and help solve issues with implementation, etc. Unfortunately, as the creator of the plugin, I do not have much time to attend to every request here as this is only a side project and I must work a full-time job to provide for my family. This is how I keep the Flash version free and the HTML5 version low cost.
UploadiFive 1.1.1 has been released which includes a small fix for added support on touch devices including iOS 6 devices.
fileExt doesn't work
  • I try

    $('input#media_pictures').uploadify({
    'uploader' : '/swf/uploadify.swf',
    'script' : url,
    'sizeLimit' : '3145728',
    'fileDataName' : 'media_picture',
    'fileExt' : '.png;',
    'cancelImg' : '/images/icons/close1.png',
    'multi' : true,
    'auto' : true

    });

    And '*.png' but still upload .gif and .png. The real problem is that also upload .pdf.
  • I was having the same problem and found that including the fie description cleared the issue. This was only tested in FF3.6.9.


    'fileExt' : '*.odt;*.doc;*.docx;*.pdf;*.txt',
    'fileDesc' : 'Documents (.odt, .doc, .docx, .pdf, .txt)',


    Hope this helps.
  • @TimPowers, it's
    'fileExt' : '*.png;',

    the file extention is *.png

  • Like I said in the post, I already try with '*.png'. I'll try including fileDesc.