Export to GitHub

noswfupload - issue #11

Firefox 7.0 bug


Posted on Nov 17, 2011 by Happy Panda

What steps will reproduce the problem? 1. Open demo in FF 7.0.1 2. Try to select file 3.

What is the expected output? What do you see instead? Expected - file name showed. Output - no filename choosed

Fix string 81 - files.item(i).fileName || files.item(i).name

Comment #1

Posted on Dec 8, 2011 by Swift Kangaroo

hi, this is my fix diff -Nup noswfupload.js.orig noswfupload.js --- noswfupload.js.orig 2009-03-22 13:39:46.000000000 +0100 +++ noswfupload.js 2011-10-05 13:46:58.000000000 +0200 @@ -7,6 +7,8 @@ var $ = { * @author Andrea Giammarchi * @blog webreflection.blogspot.com * @license Mit Style License + * + * 2011-10-05 - jA FIX FF7 */

 /**

@@ -78,6 +80,11 @@ var $ = { lastInput = wrap.dom.input; $.event.del(wrap.dom.input, "change", arguments.callee); for(var max = false, input = wrap.dom.input.cloneNode(true), i = 0, files = $.files(wrap.dom.input); i < files.length; i++){ +
+ //FF 7 fix -jA 5.10.2011 + if(!files.item(i).fileName) files.item(i).fileName=files.item(i).name; + if(!files.item(i).fileSize) files.item(i).fileSize=files.item(i).size; +
var value = files.item(i).fileName || (files.item(i).fileName = files.item(i).value.split("\").pop()), ext = -1 !== value.indexOf(".") ? value.split(".").pop().toLowerCase() : "unknown"; if(wrap.fileType && -1 === wrap.fileType.indexOf("*." + ext)){

Attachments

Comment #2

Posted on Dec 13, 2011 by Happy Ox

Thank you. The above fix worked for FF 8.x Mac - before only Safari was working.

Comment #3

Posted on Jan 19, 2012 by Quick Giraffe

ThX

Comment #4

Posted on Apr 11, 2012 by Happy Rabbit

Comment deleted

Comment #5

Posted on Apr 11, 2012 by Happy Rabbit

The above edit stops it working in IE8. Files upload ok but they are labelled as "test" in the upload list: // FF7+ fix // in IE8/9 files.item(i).name is "test" (form field name!), .filenName is undefined, but results/upload list works. // in FF11 files.item(i).name is the file name, .fileName is undefined, hence "no files selected". //So I use the below FF7+ and IE8+, and yes probably better way to do this... if(files.item(i).fileName==undefined && files.item(i).name!="test"/upload form field name/){ files.item(i).fileName=files.item(i).name; files.item(i).fileSize=files.item(i).size; }

Comment #6

Posted on Jun 16, 2012 by Happy Elephant

Not only the file is called "test" in the upload window, also the progress bars run out of the window, and the indicated number of uploaded bytes is incorrect.

Comment #7

Posted on Jun 16, 2012 by Happy Elephant

Forgot to add: plus the max file size is ignored.

Status: New

Labels:
Type-Defect Priority-Medium