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.
Uploadifive - Multilingual file name error
  • Hi. For Uploadifive, I can upload files which have English file name, but when I uploaded files which have Thai name, I got below error. I don't have this error with Uploadify. Please help me. Thank you.

    Error: uncaught exception: [Exception... "String contains an invalid character" code: "5" nsresult: "0x80530005 (NS_ERROR_DOM_INVALID_CHARACTER_ERR)" location: "/lib/uploadifive/jquery.uploadifive-v1.0.js Line: 436"]
  • Same problem with files with russian on name.
    and it's only on FF (any version).
    Does someone know solution?
  • Solution:
    At file jquery.uploadifive-v1.0.js replace line 388 from:
    binFile += '; filename="' + file.name + '"';
    to:
    binFile += '; filename="' + encodeURIComponent(file.name) + '"';

    At the begin of you upload (php) file add line:
    $_FILES['Filedata']['name'][0] = urldecode($_FILES['Filedata']['name'][0]);