Jquery-file-upload is a [tag:blueimp] widget with multiple file selection, drag&drop; support, progress bar and preview images for jQuery.
4
votes
0answers
180 views
Blue Imp jQuery File Upload - IE8 data.submit() not firing
I am using the Blue Imp jQuery File Uploader to upload files to an MVC controller. This is working on all browsers except for Internet Explorer 8 where data.submit() does not seem to be firing. I have ...
3
votes
0answers
865 views
S3: No 'Access-Control-Allow-Origin' for AJAX POST
This issue is driving me a little nuts. I'm trying to upload files via AJAX POST to an S3 bucket.
I have all the credentials correct because when I do normal HTTP POSTs it creates the resource in ...
3
votes
0answers
398 views
Filter image as per product type in file upload jquery plugin with asp.net
Here is the scenario I used the plugin https://github.com/blueimp/jQuery-File-Upload for multiple file upload But I need the images loaded as per product type as you can see attached image. When I ...
3
votes
0answers
210 views
Carrierwave_Direct with Jquery File Upload won't redirect due to cross-origin requests
I am integrating Carrierwave_Direct and Jquery File Upload. Everything works fine. Files are uploaded to S3 directly without errors. However, the browser is not able to redirect users to the new url ...
3
votes
0answers
248 views
Show/Hide within jQuery File Upload Plugin
I am using PHP with the "jQuery File Upload Plugin" by Sebastian Tschan (https://blueimp.net) and within the upload and download templates I want to do some simple show/hide stuff but can't figure out ...
3
votes
0answers
2k views
Rails + Carrierwave + Jquery Fileupload +simple form
I want to make a simple form to upload an audio file. And i want to show a progress bar of the file uploading when the user submits the file. I only want to submit one file at a time.
My ...
2
votes
0answers
476 views
Using jquery fileupload with coffeescript - resizing image when using add callback
SOLVED
It turns out the order of the js being loaded in the application.js were wrong:
original:
//= require jquery-fileupload/jquery.fileupload-process
//= require ...
2
votes
0answers
123 views
Upload file, send request as JSON
I am building a sample Spring MVC Application. In addition, I have few questions:
Need to upload file(s).
Moreover, have to send request as JSON string.
Even though, I referred various materials, ...
2
votes
0answers
37 views
how to store file.urls in jquery-file-upload plugin
I am working on jquery-upload-file plugin and trying to get the urls in an array "attractionImgLinks" everything seems good but when I hit the cancel button before or during my upload it gives ...
2
votes
0answers
181 views
Add content-type headers to each part of a multi-part form request in Javascript
Does anyone know how to add headers to each part of a multipart form request using javascript (jQuery or jQuery.fileupload plugin).
For instance, I'm uploading a image file and then additional form ...
2
votes
0answers
1k views
Crop images using jQuery fileupload
I'm just started implementing file upload functionality and was wondering on what is the best way to add cropping functionality.
Basically, what I want is for users to be able to crop their images ...
2
votes
0answers
419 views
Retrieve jqXHR in jquery file upload plugin's fileuploadsend event?
I'm using drag-drop to trigger my upload, so I'm not able to simply capture the return from findupload('send') to get the jqXHR.
So in the 'fileuploadsend' event I'm trying to grab the jqXHR element ...
1
vote
0answers
12 views
How to drag and drop multiple files but don't upload via ajax
I just need the effect to drag and drop multiple files,
And then submit the form, I can not find the way to do it.
1
vote
0answers
19 views
ember file uploader for all browser
I use FileReader to upload file in ember, using ember view . but it doesn't work in old browsers. what should I use for this case? may be jquery file uploader and should I write views for every input?
...
1
vote
0answers
26 views
Getting all files that have been submitted with a form using OneUp's UploaderBundle and blueimp's jQuery-file-upload
In out website, we wish to present the users with a form that would allow them to upload picture galleries. The form consists of a <textarea> for a description, a <select> with sharing ...
1
vote
0answers
28 views
blueimp - PHP file upload drops file extension
I'm using blueimp/jquery-file-upload for file upload. My back-end language is PHP. While user uploaded their docs few files were uploaded without any extension. When i see my file upload tracker those ...
1
vote
0answers
71 views
Session loses its data with Carrierwave multi files upload using jquery file upload
Simply I've a model called Estate which has many :images (Image model) and
I'm using CarrierWave & jQueryFileUpload to handle these in Estate New/Edit forms.
While creating new estate, and upload ...
1
vote
0answers
275 views
Codeigniter : Multiple File Uploading
I tried many multiple file uploaders which can be integrated with codeigniter like
pulpload
jquery file upload
Even though they work perfectly in the pure php environment, i could not make them ...
1
vote
0answers
376 views
Optional file upload with BlueImp Jquery File Upload
I'm using BlueImp Jquery File Upload to add file uploading capabilities to an existing form. The plug-in works great when files are selected i.e. when you always upload some files with the form, but ...
1
vote
0answers
201 views
jQuery-File-Upload, fail event fires twice when the connection is lost
Consider the following code...
var i = 0;
_$uploadWidget.on('fileuploadadd', function (e, data) {
i++;
console.log('Add file to queue with index: ' i);
data.index = i;
...
1
vote
0answers
234 views
Upload files from multiple forms is not working using multipart/form-data
I am trying to upload files from different forms to the server. The problem is that the upload method is not working properly. The mystery is that if i debug with breakpoints on the firebug the it ...
1
vote
0answers
26 views
Browse button is not working for carrierwave and uplodify
Hi I am uploading the video from my rails app.
For this I am using carrierwave gem.
I am referring this tutorial for it.
But when I tried to upload the video from my computer by using Browse button ...
1
vote
0answers
66 views
Limit file upload size across multiple files
I'm using jQuery file upload https://github.com/blueimp/jQuery-File-Upload/wiki/Options
I would like to set a maximum file size that applies to the file size of all attachments combined. In other ...
1
vote
0answers
53 views
jQueryFileUpload resize images while directly uploading to S3
I'm using the awesome jQueryFileUpload plugin. I'm now uploading directly to S3 simply by changing the server-side option upload_dir from my server to s3 like this:
$this->options = array(
...
1
vote
0answers
158 views
jQuery File Upload multiple independent widgets
I've seen the other discussion here on stackoverflow concerning question, but as it is frequently happens it was no working solutions - it was like "try to do that and see what's happens"
So, I need ...
1
vote
0answers
368 views
jQuery file uploader chunk uploads stop without exception
I'm using the jQuery File Uploader to implement chunked file uploads, broken down into 2MB chunks. The uploader works fine when testing on localhost, as well as DSL connections that are fairly fast. ...
1
vote
0answers
97 views
PhP upload progress under PhP 5.3. Any approach to getting around the version limitation?
I want to write a simple custom file upload progress code in a PhP, JQuery environment. My server host runs only PhP 5.2 or 5.3. The following is not supported: ...
1
vote
0answers
192 views
jQuery File Upload for older browsers
I am currently using the jQuery file upload plugin by blueimp and I am passing some data to a Java servlet which expects a binary file named formUpload. The action is upload and the type is forms.
...
1
vote
0answers
178 views
jQuery File Upload upload_dir vs upload_url
When using jQuery file upload plugin (http://blueimp.github.io/jQuery-File-Upload/), in the UploadHandler.php there is the option for upload_dir and upload_url.
From a discussion here (How do I ...
1
vote
0answers
86 views
jquery file upload list uploaded files in subfolders
I am using blueimp / jQuery-File-Upload to upload files for each user in my site.
Everything is working fine, what I need iis to list the files I have uploaded to the server, but the files are saved ...
1
vote
0answers
266 views
How to make jQuery File Upload(jQuery UI version) work on file inputs dynamically created
I need to use this plugin to upload excel files.
I use the jQuery UI version because lets me configure the number of files that are allowed to be uploaded, the allowed file types and also my whole ...
1
vote
0answers
136 views
Ajax file upload with rails doesn't work on IE9
I'm trying to upload a file using jquery-fileupload and rails 4. It works on Firefox/Chrome but not IE.
application.js.coffee:
#= require jquery
#= require jquery_ujs
#= require ...
1
vote
0answers
435 views
jQuery-fileupload: start file upload manually from outside the plugin
Is it possible to start jQuery fileupload from outside the plugin? I want to start it manually after another form has completed an ajax request, but I'm not sure how to.
...
1
vote
0answers
3k views
Jquery file upload with jquery validation
I have blueimp jquery file upload working with couple of other form fields in my form. Its working fine in ideal scenarios. But today I got stuck when I tried to incorporate jquery validation plugin ...
1
vote
0answers
74 views
How can is possible to set the Content-Type in jquery Fileupload plugin for IE9 or less?
I am working in a rich client application and I have a problem to upload an image in IE9 and below, using the programmatic way. My code is like that:
$('#some-file-input-field').bind('change', ...
1
vote
0answers
428 views
jQuery Fileupload iframe transport ie8 sending wrong request
I have a fileuploader modeled after Ryan Bates railscast that works perfectly in any browser that supports XHR requests but I'm having trouble figuring out why IE8 is not making the correct request to ...
1
vote
0answers
308 views
How to show jquery-upload thumbnails through Ember
when jquery-file-upload processes images to thumbnails, it does not show them correctly when I use Ember to render view. There is either an empty canvas shown or Ember tries to fetch blob:http that is ...
1
vote
0answers
423 views
How To Implement jQuery File Upload Plugin in CakePHP
I am trying to use jQuery File Upload plugin in my CakePHP project downloaded from JqueryFileUpload - CakePHP
My problem is that, I am only able to follow the directions as in the 'Quick start'.
so ...
1
vote
0answers
246 views
Capybara's have_selector doesn't see jQuery fileupload input
I'm using Rails 3.2.14, Capybara 2.1.0, jquery-fileupload-rails 0.4.1.
If I try to write tests around file upload, but the file input is not found by capybara. The spec fragment:
describe "Create ...
1
vote
0answers
606 views
Ajax Fileupload at ASP.NET gets stuck
i'm using a Ajax based Fileupload at my ASP.NET website to upload huge files with progress and to enable a multiple file uplaod. The Code looks like this
JavaScript
<script ...
1
vote
0answers
474 views
jquery-file-upload sortable download list
I want to make the download file list of the ui version sortable. The recommended method of creating a sortable list breaks when the template is rendered.
I have tried implementing the suggestion ...
1
vote
0answers
367 views
jQuery-File-Upload plugin Rails
I am a Rails newbie.
I am trying to implement BlueImp's jQuery-File-Upload plugin into a Rails 4 app. So I have got basic file uploads working, but I'm having multiple problems. First of all, I'm ...
1
vote
0answers
241 views
jQuery blueimp fileupload send only file params without other formdata
I have a form in which i user jQuery file uploader
My form contains lot of other fields other than the profile picture the user uploads. I want to upload the profile picture by sending only profile ...
1
vote
0answers
352 views
Rails 3 + JQuery-File-Upload + Multiple Files
I am currently using Carrierwave to allow my users to upload (1) file per event created. I would like to expand the options and offer my customers to availability to add multiple images per event.
I ...
1
vote
0answers
2k views
jquery file upload validation not validating
As FormData() is not supported in IE8, I decided to give jQuery File Upload a shot in my ASP web app, which seems to work in IE8, however it's not performing according to how I planned.
I'm using the ...
1
vote
0answers
3k views
AngularJs $scope.$apply not working as expected
I am using this controll: http://blueimp.github.io/jQuery-File-Upload/angularjs.html to do file uploading in angular, once the file is uploaded to my server I return a url and would like to display it ...
1
vote
0answers
741 views
Blueimp jQuery File Upload Delete aborted chunked uploads from server-side?
I'm using Blueimp jQuery File Upload with chunked uploads to handle large files, and everytime file upload are completed or file are removed, I update the client's disk space used in database.
My ...
1
vote
0answers
325 views
jQuery file uploader - Django not working correctly with chunks
I've spent some days by now trying to figure out how to tell Django that my jQuery file uploader is sending chunks and not x seperate files.
I know that I need a custom FileUploadHandler like here in ...
1
vote
0answers
202 views
How to Handle Server Side Exceptions in Jquery File Upload Plugin by blueimp
I am using blueimp jquery File Upload control in my mvc 4 Project its working fine but the issue is when I get server side exceptions this control does not respond at all.
My js code for handling ...
1
vote
0answers
51 views
Can I find out if progress updates are supported in jquery file upload?
I know there are several transports, including an iFrame one, and some browsers don't support progress updtes.
What I want to know is if there is a way to detect which transport jquery-file-upload is ...