Tagged Questions

Uploadify is a jQuery plugin that integrates a fully-customizable multiple file upload utility on your website. It uses a mixture of Javascript, ActionScript, and any server-side language to dynamically create an instance over any DOM element on a page.

learn more… | top users | synonyms

22
votes
6answers
10k views

How do I get jQuery's Uploadify plugin to work with ASP.NET MVC?

I'm in the process of trying to get the jQuery plugin, Uploadify, to work with ASP.NET MVC. I've got the plugin showing up fine: With the following javascript snippet: <script ...
20
votes
2answers
8k views

Uploadify (Session and authentication) with ASP.NET MVC

When I use Authorize filter on an action or a controller used by uplodify (http://www.uploadify.com/) the action isn't reach... moreover Session are not retrieved. I found this to retrieved user ...
17
votes
5answers
10k views

Uploadify button: Style with CSS?

Is it possible to replace the Uploadify button (which is a graphic containing up/over/down states) with a simple CSS-styled button?
9
votes
2answers
3k views

Great uploader like uploadify but with a “no-flash” fallback

Is there a great uploader script that uses jQuery, like uploadify, but with a fallback option for when flash is not available? I tried FancyUpload, which has this and uses an invisible IFRAME to do ...
9
votes
2answers
15k views

Uploadify: show error message from HTTP response

If the server returns an error (HTTP response code != 200) when uploading a file with Uploadify, the uploaded file gets a red background and a message is show like this: file.jpg (52.78KB) - HTTP ...
8
votes
1answer
281 views

Selenium and Uploadify

Is there any way to usefully test an Uploadify file upload with Selenium? I'm using Capybara with Rails, but really, any solution with Selenium would be a starting place. I'm worried I may have to ...
8
votes
7answers
2k views

Uploadify Hanging at random on 100%

I am using Uploadify to enable my users to upload images via my web application. The problem I am having is that every now and then (at what appears to be random) when the progress bar reaches 100% ...
8
votes
4answers
11k views

onComplete and onCompleteAll events failing to fire when using Uploadify

I have been using uploadify (www.uploadify.com) to upload images to my website, and it works beautifully until you try to expand on it a little. Im trying to get it to remove a queued up file from the ...
7
votes
10answers
10k views

Sessions and uploadify

I'm using uploadify, and i can't set sessions in my php files, my script looks like this: $("#uploadify").uploadify({ 'uploader' : '/extra/flash/uploadify.swf', 'script' ...
6
votes
5answers
95 views

What is best practice when it comes to storing images for a gallery?

My question is not about storing images on disk or in DB. Images will be stored on disk Image path and other image data will be saved in database. Images will be given a unique filename Images will ...
6
votes
1answer
731 views

“Error calling method on NPObject!” in Uploadify

I'm using Uploadify to upload file in my CMS. Everything works fine until recently. I got an error Error calling method on NPObject on this line document.getElementById(jQuery(this).attr('id') + ...
6
votes
6answers
1k views

Uploadify ruins file upload when no flash in browser

I have an HTML form with a file upload element, which is based on Uploadify. Unfortunately, if the browser doesn't have flash installed/enabled (I tested on Chrome and Safari), then the file upload ...
6
votes
2answers
2k views

Uploadify + jQuery UI

So far, my uploadify implementation is running relatively smoothly except for one nagging issue. I have my uploadify browse prompt in a jquery-ui dialog modal window. Files get uploaded fine but for ...
6
votes
2answers
5k views

Uploadify plugin doesn't call Java Servlet

i just started using Uploadify flash plugin instead of standard HTML UI. And met the next problem: when I click "Upload Files" link,that progress is shown and "completed" status is appeared, but in ...
6
votes
4answers
19k views

Uploadify not working

I am using Uploadify and something which was previously working now isn't and I'm not sure why. I get an HTTP error returned whenever I click upload. Watching the net tab in Firefox, it doesn't look ...
5
votes
5answers
2k views

uploadify: IO error

I've following code for multiple image upload: <SCRIPT> function render_uploadify() { $("#body_partition_middle").html('<DIV class = "photo_upload_w"><DIV class = "photo_upload" ...
5
votes
3answers
893 views

A file input button for all browsers, is this possible?

Is it possible to use uploadify to allow any user to select a file from the file dialogue and insert it into the file input element of a form? I only need to use uploadify as a way to style the ...
5
votes
1answer
269 views

Using Cucumber testing for uploadify on rails 3

I want cucumber test for uploadify on ruby on rails 3. I had tried to click on the upload button from capybara but as it is neither button nor link. Furthermore, it is hiding the text_field so I ...
5
votes
3answers
943 views

uploadify | changing uploadifysettings on the fly

I am stuck. I am using uploadify to upload multiple files to my s3 server. I would like to put each file into a folder that has a unique identifier. What I was hoping to do was to use this syntax ...
5
votes
1answer
3k views

Getting Uploadify to work with asp.net-mvc

I am trying to get Uploadify to work with my site but I am getting a generic "HTTP Error" even before the file is sent to the server (I say this because Fiddler does not show any post request to my ...
5
votes
4answers
2k views

.uploadifySettings not working as expected

I'm using uploadify and the function to change the settings doesn't seem to be working. I'm basing my code from the following example: #(‘#someID’).uploadifySettings(’scriptData’, {‘name’ : ...
5
votes
1answer
1k views

File uploads with Progressbar in Django

I am looking for an example which does a file upload with a progress bar, in Django. I have been trying djangp-uploadify for quiet sometime, but have not been able to get it working. I have been ...
5
votes
4answers
1k views

Why would some POST data go missing when using Uploadify?

I have been using Uploadify in my PHP application for the last couple months, and I've been trying to track down an elusive bug. I receive emails when fatal errors occur, and they provide me a good ...
5
votes
3answers
3k views

Getting Uploadify Working in C#

This seemed like it should be easy, but I have had trouble getting it to work. I don't know why it doesn't. It is just showing the normal file input. Is there any code / examples to get this ...
5
votes
1answer
2k views

how to access scriptData from uploadify in asp.net MVC controller

Hey guys, i've got uploadify handling some file uploads on my mvc project and that part is working very nicely i just want to know what i will need to add to my controller action to get access to ...
5
votes
2answers
3k views

jQuery Uploadify plugin with HTTPS

jQuery Uploadify plugin uses flash swf to upload files. I have implemented it on a HTTP website but now I want to do the same on HTTPS. It works fine on IE but breaks in FF by returning IO error. It ...
4
votes
1answer
426 views

How to integrate multiple image uploading with UPLOADIFY in django administration?

I met the django-uploadify (multiple file uploading) application, but the only template-use is described in wiki of the project. I need to integrate it with django admin. Any ideas?
4
votes
1answer
456 views

How do I send params with Uploadify?

I'm trying to replace SWFUpload in Wordpress with Uploadify, because it's seems more customize friendly and easier to work with. Now, I've understand that Wordpress sends some data for a server ...
4
votes
1answer
420 views

django-uploadify-s3 and HTTP 403 Error

I'm using django-uploadify-s3. It worked great until I put: 'fileExt': r'*.sql' in the uploadify_options. My problem (I think) is the conditions field. I think I need to put the file extension ...
4
votes
3answers
1k views

Uploadify suddenly stopped working completely in Chrome 10

I'm using Uploadify to allow for multi file uploading in my web application. It has always worked across IE 7,8, 9, FF 3.6, Safari and Chrome. Today I discovered by accident that it was working in ...
4
votes
4answers
4k views

Uploadify alternative? Need to upload large 1GB+ files [closed]

Basically I am just wanting something that I can implement that will allow large (1GB+) file uploads without having timeout issues. I already know of SWFUpload. didn't really get into that much as it ...
4
votes
2answers
1k views

Rails 3 with Uploadify & Paper_Clip

Anyone here haveRails 3 with Uploadify & Paper_Clip experience? I'd like to allow the user to upload photos: Here is my view: <input id="fileInput" name="fileInput" type="file" /> ...
4
votes
1answer
838 views

Public ASPXAUTH cookie and security

Due to a bug in Flash, I have to use the ASPXAuth cookie to log a user in on a page that a flash upload script calls after upload. See this page for more information: ...
4
votes
6answers
8k views

jquery uploadify

Okay, i can't post all the code to this because it's just unnecessary. But here's the problem. I have a tabbed dialogue (ui.tabs) which contains an uploadify form for uploading files. However on an ...
3
votes
1answer
57 views

How to pass the session cookie to Play via Uploadify?

I'm trying to use Uploadify, an Ajax file uploader, with Play Framework. Uploadify uses a Flash object to talk to the server ... so by default it will not use the Play cookies. I want to authenticate ...
3
votes
1answer
218 views

Uploadify to work with ASP.Net and not MVC

I am trying to work with Uploadify plugin and works fine in uploading and displaying files. As a known issue it doesn't supports sessions due to flash and the other fact is that we can work out by ...
3
votes
1answer
429 views

Using Uploadify with Spring MVC

I am trying to use the Uploadify plugin with Spring MVC in order to upload a bunch of files. I am authenticated but my request keeps getting denied because when the flash based plugin makes a request, ...
3
votes
4answers
567 views

Paperclip not called when uploading attachment, so attachment is not saved. Rails3 + uploadify

I have two different apps using paperclip. On the app that does not save attachment or call paperclip, i get this log when i upload an app started POST "/users/1/uploads" for 127.0.0.1 at 2011-04-23 ...
3
votes
2answers
470 views

Uploadify and flash issue uploading to remote server

I'm trying to use uploadify to upload images to a remote server. I've have done everything I can think of for the cross scripting issue or whatever. Here is what i've done. scriptAccess to 'Always' ...
3
votes
2answers
1k views

Uploadify: Passing a form's ID as a parameter with scriptData

I need the ability to have multiple upload inputs on one page (potentially hundreds) using Uploadify. The upload PHP file will be renaming the uploaded file based on the ID of the input button used to ...
3
votes
3answers
762 views

scriptData not being passed when there are multiple instances of uploadify

I've got two instances of uploadify in my form. You'll find the definitions below. And two buttons that trigger the uploads. The image button is the only one relevant to the question: $( ...
3
votes
2answers
1k views

Uploadify and HTTP 401 challenges. Why doesn't it work consistently?

Using Uploadify plugin which uses jQuery and SWF. Some web servers it works, some it does not. Seems to get a HTTP 401 Not Authorized when attempting to upload. Might be related to SWF. In ...
3
votes
2answers
4k views

“http error” when using Uploadify plugin for JQuery

I'm using the plugin from here: http://www.uploadify.com/ I have setup a simple test case, select a file etc & I get a "HTTP Error" when I try to upload. Here is the relevant code from my ...
3
votes
2answers
391 views

How does Uploadify work?

I'm trying to figure out how Uploadify works. I'm trying to see the POST in FireBug on the demos page, but can't see anything. I thought even requests that originate from Flash still appear in ...
3
votes
1answer
257 views

Firefox 3.6 crashes when trying to display a thumbnail

I use Uploadify to upload multiple pictures to server. I want to display pictures thumbnails before the pictures are actually uploaded to the server, based on this. I use Firefox 3.6.6. Here is how ...
3
votes
3answers
3k views

Uploadify and rails 3 authenticity tokens

I'm trying to get a file upload progress bar working in a rails 3 app using uploadify (http://www.uploadify.com) and I'm stuck at authenticity tokens. My current uploadify config looks like ...
3
votes
1answer
1k views

IO / HTTP error in Uploadify

I am trying to get uploadify to work. When I try and upload something the browse functionality works fine but there is a breif pause and then I get either an "http error" or an "IO error". The ...
2
votes
0answers
27 views

I/O Error with uploadify in ruby on rails

I'm trying to upload a image using uploadify and paperclip on rail 3.0.9 When i upload a image with uploadify, the server returns an I/O error. The development.log says: Started POST "/user/albums" ...
2
votes
0answers
35 views

Uploadify fadeOut() Problems

I'm developing an Asp.Net image placeholder control. When the user hovers the mouse over the image, a toolbar fades in at the top and give the user the option to: upload a different image, change the ...
2
votes
0answers
136 views

Multiple upload in Uploadify with rename - how to send scriptData? SOLVED

At first, sorry for my bad english. I am using Uploadify with image cropper to upload and choose your own thumb, but I need to do a multi upload, not single. Now I´m trying to send before each upload ...

1 2 3 4 5 12