Questions tagged [multifile-uploader]

281 questions
3
votes
1 answer

ServiceStack - Posting multiple files with one POST request

I'm struggling with this issue for several hours, and I can't find any solution. Does someone used ServiceStack to upload multiple files with one POST request? I was trying to use PostFile: FileInfo fi = new FileInfo("ExampleData\\XmlAPI.xml"); …
user1214919
  • 384
  • 4
  • 14
3
votes
1 answer

ERROR ashx could not create type 'jQueryUploadTest.Thumbnail' in jquery-file-upload?

I want to use the jQuery file uploader , and followed this sample[Complete code example using blueimp jQuery file upload control in Asp.Net.] . I copied the css ,js , image and the *.ashx file into my project, but when I'm running that, I'm…
hamed hossani
  • 986
  • 2
  • 14
  • 33
2
votes
1 answer

multi picture upload in zend framework, how to?

i have an issue with uploading multiple files to disk. here is my code. i have a request with 2 pictures that gets sent to a upload function. the 2 pictures are in a var called $multiUpload $folderPath = '/var/www/'; if (is_array($multiUpload)){ …
Patrioticcow
  • 26,422
  • 75
  • 217
  • 337
2
votes
3 answers

ASP.NET MVC 3 file upload plugins

I'm looking for a multifile upload module / plugin, preferably async upload for my ASP.NET MVC 3 project. I've come across blueimp but after fiddling around with the demo, some images uploaded were not shown in the preview section. Are there any…
2
votes
1 answer

Fancy Upload does not work with mootools 1.4.1 due to fade/tween errors

I am trying to integrate Fancy Uploads "Queued Photo Uploader" into my website but the Clear List and Start Upload click events are not firing. I have stripped out all of my code and resorted to copying and pasting the working example from the…
My Head Hurts
  • 37,315
  • 16
  • 75
  • 117
2
votes
1 answer

How to implement multi-upload ques with Symfony2 and uploadify?

I, have successfully implemented uploadify script into my app, files are being uploaded to /web/uploads folder. I have entity Order witch can have multiple attachments OneToMany-unidirectional relation to File entity, uploadify is a part of Order…
canni
  • 5,737
  • 9
  • 46
  • 68
2
votes
0 answers

jquery.form.js with option iframeTarget (works fine for FF, does not work in IE)

i need a interface to upload multiple file to a DMS, where i can not modify the Result Page. I have a solution with jquery.form.js (without using iframeTarget), which works fine for FF but does not work for IE: In IE i got the first file uploaded,…
Thomas
  • 21
  • 3
2
votes
1 answer

Display files (pdf, doc, ppt) from MySQL to Thymeleaf with Spring Boot

I am trying to display some documents on a page. I have saved them in the database but I am not sure how to go on displaying them on the website and make them downloadable. The files have the format (pdf, doc, ppt). If anyone could suggest…
Daphne
  • 79
  • 2
  • 12
2
votes
0 answers

Django Class based UpdateView with Form for Multiple Uploaded Files

I have two questions in regards to the problem I am currently facing: Is it best practice in django to overwrite the post method in the CreateView? If it isn't do you write a form _valid function on the CategoryFullForm or in the CreateView and how…
2
votes
1 answer

How to use Aquantum Multiple File Uploader (Jquery Plugin) for DotNetNuke?

I'm trying to use Aquantum Multiple File Upload in DotNetNuke, but I cannot get it working. Aparently is because I cannot set the form tag. Does anybody know how to implement the pluing without using the form tag? Eg: Samples shows the…
2
votes
3 answers

HttpClient and upload progress - ProgressListener missing

I watched the HttpClient progress code but I still have questions I couldn't find answer Where to get this ProgressListener to put the constructor parameter? And how to use the code correctly? Please help Here is the code import…
user592704
  • 3,674
  • 11
  • 70
  • 107
2
votes
0 answers

Laravel 5.2 : Upload multiple image with intervention but First image only uploaded

Hi I am trying to upload multiple images using the intervention package but when I start upload one image only gets upload here is the view {!! Form::open(array('url'=>'admin/event-gallery', 'method'=>'post', 'files'=>'true')) !!} …
Yousef Altaf
  • 2,631
  • 4
  • 46
  • 71
2
votes
1 answer

Symfony multiple Files total max size constraint

The task The situation is quite typical: I want to allow user to upload multiple files in one form, but total size of all files should not exceed 50 MB. The code
Eduard Sukharev
  • 1,188
  • 2
  • 15
  • 37
2
votes
1 answer

Does multi part file upload creates multiple requests

I see lot of detailed answers on how file upload works. What I need to know is that does a multi part file upload create multiple requests. What I am trying to do is to create a filter that filters out some contents from a file when it is uploaded.…
2
votes
2 answers

Disable button while Uploading files in DropZone

I am trying to disable a button when uploading started in dropzone and enable that button after completion of file upload. I can enable button in success event. but after starting upload; which event i can disable button? my code is //Simple…
Jkrish
  • 159
  • 2
  • 16