swfupload

Other ways to check the file size before upload

Is there any other way that I can just check the size of a file before upload? The requirement is if the file exceeded the limit, the form mustn't submit. If it's not, I have to do the ordinary upload using the form and I don't have to exactly upload the file to the server using Flash. ...

Do swfupload have any issues with authentication?

Do swfupload have any issues with authentication in asp.net mvc? ...

Binary $_POSTed filedata gets messed up

Hi, I am currently testing out the new client side resizing of SWFupload ( http://demo.swfupload.org/v250beta2/resizedemo/index.php ) It resizes the image on the client via flash before it gets uploaded. However, it sends it as a normal POST request with the image data as a binary string / application/octet-stream. I am able to acces...

Why won't SWFUpload execute the upload.aspx code, and why is it saving all files to the root directory?

I am using SWFUpload v2.2. In IE (8):   If I upload a very tiny file (16kb):      1) The file appears in the root directory where upload.aspx is located.      2) Page_Load on upload.aspx.cs is executed.      3) The file is actually processed by the Page_Load procedure, and the processed file is saved in the correct location.   If ...

Using SWFUpload, why are my uploads not being proceesed by upload.aspx when using Firefox (they are processed correctly in IE)?

Using SWFUpload v2.2, Firefox 3, IE 8, Flash 10 In my ASP.NET application all uploads are being processed by upload.aspx (I have the correct upload_url set in the settings object). Can anyone tell me why (in Firefox) the uploads never hit the upload.aspx page? Most of the code for the page that the user visits to upload a file is show...

swfupload not working under IE anymore

http://demo.swfupload.org/v250beta2/simpledemo/index.php doesn't seem to work in IE any more. Is there a fix for this? I get a red cross instead and the 'button' is not clickable. I'm running IE 8. ...

SWFUpload works in IE, but not in Firefox

Using SWFUpload v2.2, Firefox 3, IE 8, Flash 10 In my ASP.NET application all uploads are being processed by upload.aspx (I have the correct upload_url set in the settings object). In IE 8 the uploads hit the upload.aspx page and are processed, but in Firefox they do not. Any suggestions? Most of the code for the page that the user vis...

ASP.NET Help! FireFox is eating my cookies!

IE works fine, but FireFox does not. I am setting a cookie on my default.aspx page: HttpCookie hc = new HttpCookie("guid", guid.ToString()); hc.Expires = DateTime.Parse("12/12/2010"); Response.Cookies.Add(hc); My upload control (I'm using SWFUpload) submits to upload.aspx. On upload.aspx I call: if (Request.Cookies[...

SWFUpload, why doesnt Firefox POST?

I implemented SWFUpload on my site and it works great in IE, but in Firefox no data is POSTed to the server. I have verified this using Charles. I noticed from the debug info that in IE the last two lines read: SWF DEBUG: Event: uploadSuccess: File ID: SWFUpload_0_0 Response Received: true Data: SWF DEBUG: Event: uploadComplete : ...

UploadError 403 in swfupload for Firefox

I'm trying to upload files using swfuploder and it works fine in IE.But its getting "UploadError 403" in Firefox. I'm using apache-tomcat-6.0.16 and couldnt access the .htaccess file as well. This is my code to use for swfupload. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-tran...

Uploading images with Uploadify run into IO Error with local proxy (proxy.pac)

I'm trying to upload images with Uploadify but I run into IO error. I have got http://github.com/leeh/uploadify_paperclip_demo and it works on my computer, so I decided to implement functionality of my application to this example step by step to catch the error and discovered that the reason of IO error is my local proxy.pac (I use FF): ...

SWFupload problems

Hello all, I use SWFupload for my project but I have a small problem. When I upload a picture locally, everything works fine. But when I use it online, it stops uploading when it hits this : SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 120133. Total: 120133 I can't find the problem. Can somebody help me here? S...

Debugging a FileQueueError using Swfupload

My swfupload implementation is triggering the fileQueueError function when I try to select multiple files. When I select one file the upload works as expected. I'm logging the variables passed to the javascript functions and here's what I get anytime I select more than one file. fileQueueError file : null errorCode : -100 message : 1...

Uplodify not firing the onComplete event

Hello, I'm trying to implement uploadify, but for some reason I'm failing at getting the event onComplete. My code looks like this so far and the uploadify can upload the files to the folder that I've selected. Sys.Application.add_load(AddAdvertise); function AddAdvertise() { $('.flUploadImage').uploadify({ 'uploader': '/T...

Any workarounds for getting swfupload.js working in Linux?

Hi, SWFUpload doesn't work on ubuntu, I can see various mentions of it throughout the internets but I'm wondering if anyone here as found any work arounds? I'm developing on Windows, so the code executes fine. But my colleague is running ubuntu, and SWFUpload crashes instantly. Has anyone encountered that and found a work around? I've...

PHP and SwfUpload

Hi, I'm trying to implement SwfUpload in my web page, and I'm using php to save files on server. As is the first time I use this component, I choose to run the algoritm is suggested from the SwfUpload team (http://swfupload.org/forum/generaldiscussion/214): I've put it in a file and I've said the control to use it as code file. It did...

Filesize with SWFUpload and Amazon S3

Hello all, I'm currently using SWFUpload to upload files to my S3 bucket. And it's working great. I'm using the script from a website here: http://www.anedix.com/news/article/50 Again, the upload to my S3 works fine, however, I've been running into an issue when attempting to upload larger files. It seems that I cannot upload any...

swfupload doesnot work on IE8, windows 7

swfupload doesnot work on IE8, windows 7, it freezes when uploading. ...

ASP.net Associate session with client/request based on ip

In one web page we use a flash upload control but becouse a flash bug in the upload event the session is lost as its posted back with a new session. We have tought of using a table with ip and old session id or a query string with the old session id in order to reassing it in the uploaded event... Knowing the old session id how can i ...

SWFUpload multiple files server-side handling

I need the user to be able to upload multiple files to my server, thus I am using the SWFUpload utility. SWFUpload sends the files one by one, and I need to store them all in the same temporary directory. My ASP.NET handler recieves the files one by one and I can store the file appropriately. My problem is: How do I know which files be...