The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
8 views

Fineuploader restarts the upload in case of delayed server response

Ran into a very bizarre issue and am looking for direction. Context: uploading large files (up to 100MB) in WordPress. As part of the process there is also a long task running on the server-side ...
-2
votes
0answers
22 views

AJAX upload image preview not working

I am using the Ajax Upload to preview an image when it is selected, however I keep getting the same error and I cant seem to find the problem. I have included both jQuery and the ajaxupload file in ...
0
votes
0answers
35 views

Ajax PUT method upload make the uploaded file no longer accessible

I tried to make script ajax + php to upload files using put method, it is uploading, but the problem is, it makes the uploaded file no longer accessible. sample original file : test uploaded file ...
0
votes
0answers
27 views

Ajax Upload Error - Return View

I've a problem with dango returno to ajax script, the file is sending, but isnt saving and i got a error when try return the message to ajax script: "Safe Unicode error" There is my view and my ...
0
votes
1answer
63 views

ajaxfileupload problemajaxFileUpload is not a function

I am using ajaxfileupload to upload file , whenever i upload the file it gives me this error . I tried alot to fix it but no luck . TypeError: $.ajaxFileUpload is not a function success: ...
0
votes
0answers
25 views

ajax image uploader works on all browser

I am working on image upload script through ajax using CI, my client use IE and IE always have problem . Is there any good image uploader which support all the Browser , I saw Ajaxfileupload but its ...
0
votes
1answer
122 views

File Upload with AJAX and Normal Submit simultaneously

I have created a file upload form. I want to upload the data and simultaneously an ajax call that replaces a div in that page with a loading animatoin provided by BOOTMETRO theme. Both File Upload and ...
0
votes
0answers
30 views

Change to AjaxUpload on client side

I have AjaxUpload control on my page. How I can change '_settings.action' it on client side ? <input id="UploadButton" type="button" runat="server" /> $(document).ready(function () { var ...
2
votes
2answers
73 views

why page is redirected when i drop image on div

I am using jquery 1.9. I have problem to implement upload image using drag and drop but when I drop image in div then its going redirect and open image in browser i have implement code in jsfiddle ...
0
votes
3answers
133 views

How can I delete files with CakePHP and Ajax?

I'm in a page called 'add.cpt' that has a list of images. The user has the option to remove the images but I can't make it work. In the event of click I try to call an ajax trying to pass the name of ...
0
votes
1answer
144 views

AjaxUpload plugin not working in firefox

I have the following code to initialize the Ajax Upload settings in my js: new AjaxUpload($('.btnAdjuntar'), { action: ...
1
vote
1answer
232 views

upload file in ajax with wtforms

I use wtforms to handle forms. so i create form like this: class ProfileForm(Form): firstName = TextField(_('firstName'), [validators.Required(), validators.Length(min=3, max=45)]) lastName = ...
0
votes
0answers
308 views

html5 file upload api and laravel

I have created a HTML5 drag and drop file upload for my laravel app, however I having some trouble setting the filename, as variable that is available to all my controller. The process the user takes ...
1
vote
1answer
427 views

auto file upload submit using jquery form throws access denied error in IE

I am using jquery form to upload an image without page refresh. Following is the html markup: <a href="javascript:void(0);" onclick="UpdateImage();"> <img src="@_fullImgPath" ...
2
votes
1answer
270 views

Google Chrome for IOS 6 ajax file uploading progress event doesn't work

I have a problem with xmlhttprequest file uploading progress event on Google Chrome for ios6. code already work on all desktop browsers and Safari(ios 6). also there is a problem wiht uploading mov ...
0
votes
0answers
172 views

How to track on ASP.NET MVC an AJAX upload progress

Ok, I know there are lots of jQuery plugins and premade solutions for doing ajax file uploads with progress bars. But... it happens that usually they are too complex for the simple use I'm searching ...
0
votes
1answer
272 views

Ajax upload not working in ie

I am using ajax upload for uploading a image .it is working in all browser but not working in IE. here is my code what i m using, $('#photoimg').live('change', function(){ ...
0
votes
1answer
120 views

Improving concurrent AJAX file upload performance

I have AJAX file upload in my website and it is very slow in case of concurrent file uploads. You can see the details here, Concurent AJAX file upload LIMIT. So i'm looking for way to start my second ...
0
votes
0answers
263 views

Single file upload using PLupload?

We have another library we use for doing ajax uploads of images, which does some other processing for us. We are attempting to model plupload to use the same UI. This is working well, but I am stuck ...
0
votes
1answer
1k views

dynamically create an iframe, attach a form with input type file, trigger the browse and auto-submit the form

I'm trying to achieve ajax-like-file-upload-using-hidden-iframe. Obviously there are many plugins available for that purpose, but I think my requirements are a bit different. So I'm trying to achieve ...
0
votes
1answer
424 views

Node.js response to AJAX-uploaded file

I have Apache server running on port 80 and Node.js server running on port 3000. I'm trying to ajax-upload an audio file from Apache to Node.js, then encode it with ffmpeg and return its id3 tags as a ...
2
votes
1answer
251 views

Backbone + Rails 'Paperclip' Async Uploads

I'm implementing async photo uploads using backbone & the rails 'paperclip' gem: Questions: Do I need to use jQuery upload (or equivalent lib)? If so, do I simply override photocollection.sync ...
0
votes
3answers
379 views

jQuery.createUploadForm is not a function

I am using ajaxupload for uploading and using jQuery 1.7.2. I got an error like this TypeError: jQuery.createUploadForm is not a function [Break On This Error] ... jQuery.createUploadForm(id, ...
0
votes
1answer
208 views

Why my json_encode get corrupted

$model = new XUploadForm; $model->file = CUploadedFile::getInstance( $model, 'file' ); //We check that the file was successfully uploaded if( ...
0
votes
2answers
635 views

Upload Button created with AjaxUpload behaves strange

question is bit different than other questions regarding this. I had a similar issue as jQuery AjaxUpload, have to click button twice? but I managed to fix it with my workaround. Button comes ...
0
votes
0answers
379 views

Valums File Uploader and IE9 - Params not being passed, possible that callbacks aren't being assigned

I'm using Valums File Uploader to upload files via AJAX. This currently works with FF, Chrome, and Safari, but does not work in IE. After reviewing the request, it doesn't seem to be passing the ...
1
vote
1answer
514 views

Ajax file upload in mvc application

in my MVC app i using Ajax upload (Version 3.5 (23.06.2009)) in this part of code: <div id="userPhotosUpload"> <span class="tabs_fieldDesc">@Html.Label("txtPhotoDescription", ...
0
votes
2answers
412 views

The uploaded image not displayed after ajax upload in chrome

I did an ajax upload with php.Everything wiil be perfect in firefox. But when i test it in chrome browser its not working correctly. That means it displays this : This is my ajax upload code: ...
0
votes
1answer
307 views

Ajax uploading not wroking - when upload pdf file

this is my ajax code: $(function(){ var cntUp = 0; var btnUpload=$('#upload_pdf'); var status=$('#status'); new AjaxUpload(btnUpload, { action: 'uplod_estimate_file.php', ...
1
vote
1answer
292 views

AjaxUpload and modified input file type doesn't work together

Starting by some nice tutorials I tried to: 1) use jQuery (and in particular the AjaxUpload library) to upload an image file from an input file button. 2) use s CSS trick to replace the default HTML5 ...
0
votes
0answers
111 views

AjaxUpload Issue

I have three buttons for uploading file on the same form. I have used AjaxUpload plugin for that. But for file uploading I have to click twice, then it proceed. function ...
-3
votes
1answer
157 views

How do you upload file(s) with AJAX

I am currently trying to upload a file through a form I made, using jQuery. This is what I am attempting to do: function ajax_upload(){ var formData = new FormData($('form#userform')); ...
1
vote
0answers
569 views

Ajax file upload rails + Rack RawUpload + Paperclip

I am trying to get ajax image uploading working in my rails app. I am using Paperclip for the normal image uploading, and that works fine, but I can't seem to get the ajax method hooked up. I am ...
0
votes
0answers
380 views

How to change template of qq fileupload?

I try to use ajax file upload with http://valums.com/ajax-upload/ but I got error when trying to change template. <script> function createUploader(){ var uploader = new ...
0
votes
2answers
188 views

How to cast string to HttpFilePostedBase

Is there a way how to convert the string to HttpFilePostedBase? I'm currently using the Ajax File upload . But the value that it return is string. But my method is requesting for HttpFilePostedBase is ...
1
vote
0answers
291 views

File upload in servlet corrupts the file

I am uploading a file using using (Valums uploader) and I using servlet at server side. File type is application/pdf. Code is : String filename= request.getHeader("X-File-Name"); InputStream is = ...
0
votes
1answer
135 views

What does Action=“#” mean? [duplicate]

Possible Duplicate: Is it a good practice to use an empty URL for a HTML form's action attribute? (action=“”) I'm updating a project to include an Ajax Updater ...
1
vote
3answers
240 views

django ajax request response [duplicate]

Possible Duplicate: django file upload from json Hi am using the following ajax upload from the template but i do not get a response from django view.What is wrong here..i do not see any ...
0
votes
1answer
419 views

Ajax form submission with Valums plugins in asp.net mvc 3

I have used Valums uploader plugins for file uploads in asp.net mvc 3. Following is the views which have form fields and ajax query upload button inside form. I am not sure that I am doing it right ...
0
votes
2answers
164 views

AjaxUpload Script Leaving Spaces in Filenames

I've searched this site and I can't seem to find an answer. I have a simple AjaxUpload script for uploading 10s audio samples and then displaying the uploaded file as both BBCode and a flash player ...
0
votes
1answer
527 views

Insert custom HTML into Zend_Form

I have a Zend_Form created from a controller like this: $form = new Zend_Form; $form->setAction('/ad/add')->setMethod('post')->setAttrib('id', 'add_form'); ...
0
votes
0answers
552 views

How to get ajax file uploader work in IE9

I first tried ajax-upload from here to upload images to server in java based web project. It worked alright on Safari 5.1 and Chrome 19 but had issues with IE 9 and Firefox 9, so I had to drop it and ...
0
votes
2answers
973 views

Uncaught SyntaxError: Unexpected token <

I am using ajaxupload.js from here and I see the file doing the upload work alright. But I am getting <pre style="word-wrap: break-word; white-space: ...
3
votes
3answers
134 views

Getting the input box name when clicked

In my site I use 10 file upload boxes. I want to get a file upload box name when I click on the box. That means first upload box, second upload box, third upload box etc... So if I click on the ...
0
votes
1answer
609 views

Ajax Upload delete button

im using ajax upload with jsp. it's work well but I wanna add delete button for each file or at least for all files. this is my code: <script type="text/javascript"> $(function () { ...
0
votes
1answer
251 views

jquery valum plugin button change

I am using Valum file upload plugin in my website as well as jquery-ui theme excite-bike also. Now my problem is button, which valum plugin provided to upload a file.I want to use my button to call ...
0
votes
3answers
2k views

multiple file select in file upload not working in IE8

I am using file upload control from http://valums.com/ajax-upload/ and it says it works with multiple file selection. However, it does not work on IE8. I tried the same in FF and it works fine with ...
1
vote
2answers
533 views

JavaScript to get text input value

I have JavaScript of ajax uploader as below; $(document).ready(function(){ var qwerty = $('#qwerty').val(); $('#demo1').ajaxupload({ url:'upload.php', remotePath: qwerty, maxConnections:1, ...
0
votes
0answers
121 views

Opera 11.52 Corrupts Image upload

I have this script which uploads an image. (Ive been using Valums Ajax-Uploader). It works fine in all browsers. But in Opera 11.52, the uploaded image gets corrupted. But when I use PHP's copy() ...
1
vote
0answers
417 views

How to create callback function when upload failed by XUpload Extension on Yii?

I'm using XUpload Extension to multiupload onto my site base yii framework. It's work very well. Untill I try rename upload folder, xupload upload failed! I can predict this case. But I don't know how ...

1 2