The tag has no wiki summary.

learn more… | top users | synonyms

-2
votes
0answers
20 views

Rails Load javascript file first then contents

def new render layout: false end loading "new.html.haml" via Ajax in a Jquery dialog. In the view I'm including a JS file = javascript_include_tag :file_uploads It gets loaded after the contents. ...
0
votes
0answers
31 views

How to use xupload yii extension

I want to use upload multiple with xupload extension, but didn't work my code? this Configuration config.php 'aliases' => array( //If you used composer your path should be ...
0
votes
0answers
19 views

override error handler in silverlight multi file uploader

I am working with free silverlight multi file uploader. It has an .ashx handler for uploading files. whenever any exception occurs (file already exists lets say), it will be thrown by handler and that ...
0
votes
0answers
10 views

How to Upload Mulitfile files in asp.net

I have three FileUpload control in my .aspx page. The first two is used as to upload only single file. But, the last third, I want to use it as to upload multiple file uploader.. How this can be ...
0
votes
0answers
29 views

using ffmpeg plugin with plugin uploaded

good he uploads the video registers in the database but does not take the print screen of the video and did not register on the database. <? class upload{ public $vide; ...
0
votes
1answer
127 views

MVC jquery fileupload pass parameter

Hi how can I pass additional parameter using jquery fileupload in mvc, the code looks like this : <label class="imgIcon"> <span><input type="file" id="fileupload" ...
0
votes
1answer
77 views

dropzonejs file types

I'm using dropzonejs for a simple file-upload. I currently have a few issues though. I don't know how to restrict the types of files being uploaded. I have file-verification on my PHP-backend, but ...
0
votes
0answers
102 views

Uploading multiple file using codeigniter

I got a problem with multiple upload file using codeigniter. I've tried many method before but still no success. Here is my code. View <?php echo form_open_multipart('staff/upload_files', ...
0
votes
1answer
40 views

Flash MultiPowUploader - Triggering the Upload Button When Invisible?

I am using ElementIT's MultiPowUpload v3.3 and I have the standalone, Flash portion working. My problem is when I make the upload button invisible and need to trigger the upload via a standard form ...
-1
votes
2answers
595 views

Upload more than one file aspx.net C#

I have the following HTML source: <form name="AddTrack" id="add_track_form" action="AddTrack.aspx" method="post" runat="server"> <input type="file" name="file1"/><br /> ...
0
votes
1answer
600 views

Blueimp jQuery File Upload plugin with Codeigniter step by step?

https://github.com/blueimp/jQuery-File-Upload I spend 2 days on this, and nothing worked. I also downloaded the example from their site ...
0
votes
2answers
154 views

Multiple File Upload resets Request.Files

I'm using a asp.net file uploader control, but whem the user select the file twice, the first selecion is reseted. For example: I select 3 files, before click the Upload button, I click on "Browse" ...
1
vote
1answer
99 views

I can't use fileUpload.PostedFiles[] property?

I can't use fileUpload.PostedFiles[] property? I actually need a multiple fileuploader & resize. I use HttpFileCollection hfc for all my files. It go's always wrong by string filename = ...
2
votes
1answer
92 views

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: ...
0
votes
1answer
389 views

Upload mutliple files using FileUpload asp.net

I have been struggling with this issue for some time now. I have a web interface where I create projects, with this you should be able to upload multiple documents to the server, which is attached to ...
0
votes
1answer
357 views

How to upload multiple images and crete thumb in codeigniter and also store their name in database with other fileds

I want to upload 3 images and create thumb of them and want to store their name in databse . Any idea what to do.NOte I have read many forum and questions but none has helped me in doing both upload ...
0
votes
1answer
211 views

Struggling To Use PyroCMS Files Library To Upload Multiple Files

Am cross posting this with the PyroCMS forum in the bid to reach a wider audience for help as I just can't seem to fathom it. When I try to upload multiple files using the PyroCMS Files library I run ...
0
votes
0answers
92 views

Clearing DOM elements with jQuery, then recreating and rebinding various Functions

I am having a really confusing time which has wasted hours of today! I posted this earlier: Binding jquery-multifile to a dynamically loaded form Which explains part #1 of my problem. I am now ...
1
vote
0answers
138 views

Binding jquery-multifile to a dynamically loaded form

I am using the jquery multifile plugin found here: http://www.fyneworks.com/jquery/multiple-file-upload/ I've used it in the past and had no problems, but now I am trying to use it in a dynamically ...
1
vote
0answers
41 views

How to pass on a path (of the attachment) to phpmailer with ajax?

$(".feedback input.sent").click(function(e) { e.preventDefault(); var name = $(".feedback textarea.name").val(); var mail = $(".feedback textarea.mail").val(); var phone = $("feedback ...
0
votes
1answer
257 views

how to get value of html 5 multiple file upload variable using jquery?

even though i select multiple files using below html. <input type="file" id="multiplefiles" name="uploadedfile[]" multiple> I only get value of first file selected. i am using a simple: var ...
2
votes
1answer
189 views

multiple image using codeigniter

<?=form_open_multipart('upload/process');?> <input type="file" multiple="multiple" name="userfile[]" id="userfile" /> <?=form_submit('upload', 'Upload');?> ...
0
votes
1answer
283 views

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 ...
0
votes
2answers
166 views

Drupal 7: multiupload with file entity fields support

Is there a way to have a multifileupload with "file entity"/"file entity inline" support?
1
vote
1answer
2k views

How use Jquery-File-Upload PHP with database in last reliz?

How use jQuery-File-Upload PHP with database? I want isnert or delete rows adout image when iuploa or delete image and that name images will be as time() when they upload in directory All found ...
0
votes
1answer
152 views

How to implement multi files upload in IE (like picasa)

Does anyone know how I can implement a multi files upload (like picasa web) supported on IE ? The well known Jquery plugin blueimp does not support multi upload in IE, so I cannot get inspiration ...
4
votes
1answer
2k views

JQuery-File-Upload error: Uncaught TypeError: Object #<Object> has no method '_on'

I'm trying to use the jQuery-File-Upload plugin. But I have a problem when actually trying to invoke the function. Somewhere in my code, I'll call $(fubar).fileupload, and get Uncaught TypeError: ...
0
votes
0answers
99 views

I need to know how to mock a controller method where I pass a request with a csv file upload done and call other methods which does csv parsing

I need to know how to mock a controller method where I pass a request with a csv file upload done. The controller then calls other methods which does csv parsing (this I think I can mock if I know ...
1
vote
1answer
206 views

How Can I Extend the maximum file size to upload and send (via email) files while using jquery.MultiFile.js

I'm using a plugin from jquery to use a multiple file upload to create a program that sends e-mails.. Check the source http://www.fyneworks.com/jquery/multiple-file-upload/ I downloaded it here, ...
1
vote
2answers
525 views

Upload multiple files at once using GWT

I'm desperately trying to enable the multiple-property to users of my webside. User should be able to upload a bunch of PDF-files to my server without choosing each file separately. I'm using ...
1
vote
1answer
495 views

how to use jquery file upload plugin in django framework with python

i'm new in jquery field and i want to use jquery file upload plugin in my web site like what that's been described in this demo: jquery File Upload Demo i don't know how to use it in django framework ...
3
votes
1answer
414 views

how to keep the uploaded files in the form until submit it using jsf-2 and primefaces-3.4

I have form with many input fields plus primefaces component to upload multiple file "p:fileUpload" when I submit the form I can't get the uploaded files .. the manged bean is "RequestScoped" . So how ...
0
votes
1answer
255 views

ASP.net Uploadify Querystring textbox value

On referring to this post ASP.net Uploadify Querystring checkbox value, I simply tried to pass the value of a textbox control to FileUploads.aspx.cs but I am unable to get the value, neither using ...
0
votes
1answer
625 views

ajax multiple upload doenst php file processing

Hi i'm using the fineupload multi file uploading script, but there is something i can not get a grip of. I'm trying to make a php server side file processing script. when u include <script ...
1
vote
1answer
229 views

unzip and read each file on Google App Engine (Java)

I'm trying to create a servlet that is able to unzip a folder which contains 3 csv files and then print out the data of each csv file. I have been trying to use ZipInputStream but it does not provide ...
0
votes
3answers
197 views

multi file form upload

now first thing is I've seen everywhere over the net what to do in the case that what I'm trying to do doesn't work, I've tried all of the solutions and they don't work, I'm obviously missing ...
0
votes
1answer
238 views

Creating a multiple file upload form with CI

hope someone can help me with this. I am developing a form which allows to upload multiple files using CodeIgniter and jQuery to enable multiple file uploads using one uploadfield. But now I get the ...
0
votes
0answers
41 views

How to loop HMLHttpRequest.send(data)?

I want to send more than one file using XMLHttpRequest. I want to put every file directly into xhr.send(file) method. And would like to use the same XMLHttpRequest object for every request (as ...
0
votes
0answers
98 views

Does anyone have working Uploadify to AWS upload code?

I want to upload files (audio and video) directly via Uploadify at my site to my Amazon AWS bucket, but I cannot find any working sample code written for the latest version of Uploadify (3.1). Does ...
0
votes
0answers
78 views

How to add an OnCompleteList to Valums file uploader?

I'm trying to use the Valums file uploader (https://github.com/valums/file-uploader). I'm not PRO in javascript, so I need your help. I need to do something when all files are uploaded. I can't use ...
0
votes
0answers
168 views

jQuery File Upload - How to allow submit without selecting files

<form id="fileupload" action="/Test/jQueryFileUpload2" method="POST" enctype="multipart/form-data"> <div class="row fileupload-buttonbar"> <div class="span7"> ...
-1
votes
1answer
332 views

Customize maxNumberOfFiles of jQuery File Upload

I want to allow user upload only 1 file on some pages and more than 1 file on other pages. There're place to change this number var parentWidget = ($.blueimpFP || $.blueimp).fileupload; ...
0
votes
1answer
571 views

multiple file upload django

I know how to mutiple file upload in djnago. I use: <form enctype="multipart/form-data" action="" method="post"> {% csrf_token %} <p>Press control to upload more than image at ...
0
votes
1answer
183 views

Timeout for Multipart HTTP post

How to set the timeout for HTTP multipart file post. I want to upload image to the server at the time internet connection is not there how to handle that situation?
0
votes
1answer
130 views

Multiple upload filephp from two input

I need to upload some files (images but it doesn't matter) using jquery and php. I find a jquery plugin plugin to make multiple upload file, http://www.fyneworks.com/jquery/multiple-file-upload/ . So ...
1
vote
0answers
99 views

image uploading done but no response

i'm going to send a image from phone gap android app to a web server. i've a js file like that: function uploadPic(imageURI,objectId){ var options = new FileUploadOptions(); ...
2
votes
1answer
3k views

Carrierwave multi file (photo) upload

I have Ruby on Rails app and I use Carrierwave for uploading my images, but I need upload more than one image at a time. I find some jQuery plugins(uploadify, image-uplad) but I don't know how ...
0
votes
1answer
851 views

How can i upload multiple files in struts 1.3 using org.apache.struts.upload.FormFile[]

In my form end user have the chance to add multiple files dynamically.so i have done this with the help of javascript. But problem is that i am using dynavalidator form, In this dynavalidator form i ...
0
votes
3answers
3k views

Spring 3.0 MultipartFile upload

I am converting Java web application to Spring framework and appreciate some advice on the issues I am facing with the file upload. Original code was written using org.apache.commons.fileupload. ...
0
votes
1answer
448 views

Codeigniter Multiple file upload and thumbnail creation: only one thumbnail being uploaded

I am able to upload my images ok, I am able to create thumbnails ok, but only the first thumbnail is being uploaded. I checked the error code for the resize function and they all say 'true' (Success). ...

1 2 3