vote up 5 vote down star
2

You all know the new generation of fancy, mostly Flash-based file uploaders like SWFUpload that can show a progress bar while uploading - a great improvement especially for shaky and low-bandwidth connections.

However, these uploaders all bring their own logic of how to handle uploads on the client side. I am looking for an unobtrusive way to "fancify" existing, classical file uploads, i.e. introducing a progress bar to normal file upload forms. Due to the architecture of uploading files, this is not possible without some tweaking on the client side (you can't just add some component, and then expect to have the uploaded files in the $_FILES array along with the other data in the form).

I am looking for a solution that keeps the tweaking to an absolute minimum, e.g. a component that adds itself to the onsubmit event of a normal form, performs the file upload, displays a nice progress bar, puts the resulting temporary (server side) file path into the form, and submits it. On the server side, I just have to modify my script to use the file path provided by the flash uploader, instead of $_FILES and consorts, and think about security for a moment.

I will write that myself if I have to, but I would really, really like to get around that. So if anybody knows a ready-made solution for that, I would be very grateful.

flag

2 Answers

vote up 2 vote down

jquploader uses the info inside the form, such as the action attribute value as upload script. But i haven't updated it in a while and it lacks all the belts and whistles scripts like uploadify have (which is an excellent script btw). See if it could be a base for you to tweak.

link|flag
This looks exactly right. I will take a look whether I can use this as a base. – Pekka Oct 31 at 13:26
vote up 0 vote down

Does the technique used in Uploadify (a jQuery plugin) meet your needs? Demo

link|flag
Uploadify is great, but as far as I can tell the technique used would not integrate well with sending a complete form with all sorts of data, at least not without tweaking. – Pekka Oct 31 at 13:25

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.