Questions tagged [multifile-uploader]
281 questions
0
votes
1 answer
Issue for access the other http response during the upload progress in Background
I am uploading some file by using Apache library to upload multiple files on server by multipart entity builder. And it uploaded perfectly. But at the same time when I access the other http request during the uploading is going on then server is…

Sunil Kumar
- 7,086
- 4
- 32
- 50
0
votes
0 answers
request.getFile() returns null in controller
I am implementing multiple files upload functionality.
I have a form as follows:
0
votes
1 answer
How to upload a file using file path in android?How to convert file path to Base64 and then convert it to JSON array?
I am using an Async task below to call the webservice helper.
public class Send_reportclaim_Async extends AsyncTask {
private ProgressDialog Dialog;
@Override
protected void onPreExecute() {
Dialog = new…

zyonneo
- 1,319
- 5
- 25
- 63
0
votes
1 answer
How can I disable an element using jQuery Multifile?
This code does not disable my element as expected
if(Multifile.n==0){
$("#btnUpload").attr("disabled","disabled");
}
This code does not enable my element as expected
$("#btnUpload").attr("disabled","");
I added these lines in…

David Fox
- 10,603
- 9
- 50
- 80
0
votes
0 answers
Strange transient error with Multi-file Upload
I'm running grails version 2.3.3 on a local PC not on the internet at this stage.
I am building a multi-file upload process and I'm having what can only be described as 'transient' behaviour with this.
By transient I mean it has worked correctly for…

mikek
- 169
- 1
- 14
0
votes
0 answers
Valum's file uploader - Laravel
Im using Valum's file uploader in Laravel framework. I have this code in my view:

Tomas Turan
- 1,195
- 3
- 17
- 27
0
votes
1 answer
Uploading a File to GCS using boto in python
I'm trying to upload files from my local system to the GCS using boto in cloud. After a file get uploaded I get an error which says " The MD5 you specified in Content-MD5 or x-goog-hash did not match what we computed." Below is my code.
def…

Hell Haunter
- 1
- 1
0
votes
1 answer
Could my file structure be causing the issues with my photo upload system?
I'm trying to create a photo upload system following Adam Khourys online tutorials.
http://www.developphp.com/view.php?tid=1395 - Upload multiple files video
http://www.developphp.com/view.php?tid=1304 - User profile upload
Most of the code is like…

lil_bugga
- 81
- 2
- 14
0
votes
1 answer
plupload not working in landscape for iOS
I am using plupload in a website and it works on every other browser and device, but in landscape view of iPhone or iPad, the camera roll (select file functionality) does not come up at all. Any help, is this a known issue?

Beks
- 73
- 7
0
votes
1 answer
Primefaces 5 FileUploadEvent, not all files are uploading
I am developing a page in Primefaces 5 and using p:fileUpload tag in advanced mode to upload multiple files.
I have got the file upload working fine, but while I was testing I noticed that sometimes not all the files were actualy uploaded. Ex: I…

TurboNerd
- 181
- 1
- 2
- 7
0
votes
1 answer
change the first input field name when do the multiple $_FILES dynamically
I have a add row function to add the multiple input field rows for uploading multiple file in a form. Here i try to change the input name while adding a row except the default first row of input field. but it is changing the first row name too. How…
0
votes
1 answer
is possible upload more than 1 image in 1 request using valums-file-uploader
I used the dropzone.js and it provides an option to uploading more than 1 image in 1 ajax request by doing 2 following things.
parallelUploads // set the number of images in 1 request
uploadMultiple // and set true so it can upload all in 1
Now i…

Blu
- 4,036
- 6
- 38
- 65
0
votes
1 answer
File upload code for filedropjs.org plug in
I am using Filedrop.js file (sample demo page is here Filedrop.org ).
I would like to have to upload.php file code for iframe and without iframe. Because I am testing that in IE9+ (upto IE 10,11).
Site has provided only code for js and not php.
Can…

Smile
- 2,770
- 4
- 35
- 57
0
votes
2 answers
Upload all files from a directory
I know we can upload a single file given the file to browser using input tag and file.
But how can we upload files from a directory given the directory path in a Web Application?

Aj.
- 27
- 1
- 7
0
votes
1 answer
Multi file uploads in rails 4
I'm having a few problems with multi file uploads in rails 4, I've got it working using carrierwave and polymorphic associations but its creating a file filed for every image in the view. This makes sense as its creating fields for the associated…

Lee
- 479
- 1
- 4
- 18