coolaj86 / formaline

formaline is a module for handling form requests ( HTTP POSTs / PUTs ) and for fast parsing of file uploads.
Apache License 2.0
239 stars 16 forks source link

Formaline does not allow multiple files to be uploaded in the same request #29

Closed jergason closed 12 years ago

jergason commented 12 years ago

I am working on dropshare, an app that uses Formaline to handle file uploads. Formaline works great for single file uploads, but when uploading multiple files in the same request it seems to only display the first one.

We have a test case in the test/test.sh file to test multiple file uploads. There are two other cases that test single file uploads, and those work fine, but if you install and run dropshare, and then run the test.sh script you should be able to look at the console of dropshare and see that for the request that should upload multiple files, only one is present in the loadend event.

jergason commented 12 years ago

Never mind I messed up and was doing something wrong in curl. Carry on!