swfupload

.NET MVC 2.0 Custom Model Binder not called when using SWFUpload

I am uploading files using SWFUpload. To get the data I need passed along with the file, I am adding post params to swfupload. The problem is that the custom model binder I have written is not called when the controller method is called by swfupload. Some of the properties of my model are set, but not the properties controlled by my c...

How to use SWFUPLOAD for iPhone Http server by deusty design

I have an iPhone http server running on my iPhone but this supports just a single file upload and without and progress bar. I read that SWF upload can do this for me but I dont know if it works or not as the iPhone http server doesnot support server side scripting. I want to know if i can use SWF upload in for my cliet side....and how? P...

SWFUpload with Django 1.2 csrf problem

I`m trying to upload files to Django with SWFUpload. Found this article Django with SWFUpload. But found one problem. In Django 1.2 a csrf requires a csrf token to be send on every form submit, and it includes files that are send with SWFUpload.So uploading doesnt until i turn off csrf ( globally or for view using @csrf_exempt decorator...

SWFUpload uppload error 500 - asp.net website

I have a asp.net website where I am using the Flash SWFUpload (http://code.google.com/p/swfupload/) upload component. The same code is hosted on two servers - on server A I can upload images without any problems. On server B I get Error 500 when I try to upload - no other error message. I am unable to find what server settings are dif...

SWFUpload - breaks on DOM Manipulation..

Has anyone found a way around this yet? I have a project where the client wants the Flash button to have a progress bar embedded within it. So far i'm doing this by having a Div with CSS hidden and then displayed after the file has started uploading. The Button is then hidden however when the button is hidden the event's stop firing. Th...

How do i get swfupload to return image URL after upload?

I am facing a really weird problem. I am using swfupload to upload multiple images to the imageshack server. I am also storing the returned URLs in the database. How do i show the URL returned from imageshack to the user as soon as i receive it? Is there any way to make swfupload return the URL once upload finishes? Here is the code that...

help with swfupload and java

...

How to show image after html upload through ajax without reloading the page

I have basic form site with swfupload.swf upload component. In this form I only use swfupload single file html basic upload feature - meaning that only one file uploaded at time - this was done in order to make sure it works on all browsers - i had lots of problems with multiple file flash upload. I would like to view the uploaded ima...

swfupload - multiple instances and setting dynamic data with setPostParam

I am using swfupload, and have a bunch of 'Attach File' links and each one of them opens up the same Jquery Dialog which is associated with 1 swfupload instance. I tried to set custom post params but it fails: www.arianhojat.com/temp/code/swfupload/index.html if you remove the 'setPostParam' line its fine but id like to set params... It...

swfupload get timer left

Hello, is it any possible to get time left for uploading files using swfupload? ...

SWFUpload: How to cancel an upload in Classic Form

Hi all, I am using the classic form demo. The link is: link text If you try out the demo & try to upload a file, you can see once you click on the "Submit Application" button, the cancel (cross image) button does not show up in the top right hand corner of the blue box (that indicates the progress). How can I manipulate the existing co...

Thoughts on securing SWFUpload

One of the issues with using a Flash uploader controlled by Javascript (e.g. SWFUpload) is that Flash starts its own session when executing the upload script. This means that if the upload script authenticates the user, it will fail. One way around this is to pass a PHPSESSID as a post parameter to the script. This isn't a perfect solut...

Passing params from swfupload/uploadify to Rails app - broken?

I have an uploadify component, which sends the files back to rails application. The problem I noticed at some point is, that for some special values data passed along are altered by the flash object. On the client side I have $(document).ready(function() { $('#photo_image').uploadify({ ... 'scriptData': { authentici...

flash.net.URLRequest ignore browser proxy settings?

Hi guys, Played a bit with http://demo.swfupload.org/ Sniffed the queries, to my dismay, swfupload ignores the Chrome/Firefox's proxy settings and communicate with server directly. Is this a bug or flash.net.URLRequest just ignore proxy settings? Could this potentially leak my IP online even I am behind a proxy? ...

Protocol for a desktop based file uploader

Hi, I am trying to build a large file uploader. Currently I am using swfupload and nginx + rails and I am able to upload a file as large as 1 GB before running into problems. After 1 GB, depending on OS, swfuploader starts locking up or just starts throwing 500 errors. I noticed that Vimeo offers 2GB uploads using a desktop uploader. ...

SWFUpload alternatives

I've developed a system that uses SWFUpload to easily allow the user to upload multiple files with a progress bar showing them the upload progress. It all works fine in my development environment, but is failing for some users in the wild with the Flash movie not loading. I can see the Flash movie is there, if I right click it a window a...

swfupload cancelling upload

I have a form which is using swfupload with the jquery plugin. I have some required fields which should be filled before I allow upload. So I add a handler to file_dialog_complete_handler Somethings like, file_dialog_complete_handler = function(dom_el){ alert(10); dom_el.cancelUpload(); return false; } This doesnt work...

SWFUpload + jQuery.SWFUpload - Remove File From Queue

Hi, I'm facing a big issue IMO. First, here's my code: .bind('uploadSuccess', function(event, file, serverData){ if(serverData === 'nofile') { var swfu = $.swfupload.getInstance('#form'); swfu.cancelUpload(file.id); // This part is not working :( } else { alert('File uploaded'); ...

SWFUpload asp.net return new filename of uploaded files

Hi, I'm trying to implement SWFUpload for uploading images on my page. The file-path is stored in a table with a unique id as key and the file is store on the server with a new filename. I need the id or the filename to be returned so that I can access that information when I later-on need it. Is this possible and how is it done? Maybe ...

How to get swfupload to work with Asp.Net MVC 2

I'm trying to use the swfUpload jquery/flash plugin for uploads, and I'm following the approach by Steven Sanderson (http://blog.stevensanderson.com/2008/11/24/jquery-ajax-uploader-plugin-with-progress-bar/ ). But I can't get it to work. It works fine in the sample application I downloaded from his site. Just to try to get it to work I h...