uploadify

uploadify: no reaction on fileUploadStart()

I have no reaction or error when i want to upload images with uploadify. It's possible to select the images, but no upload. Very strangly i have this only on this hosting ! In the testversion of that website on my hosting, everyting was working. When i load it onto the hosting of my client; it failed. You can see it here: http://www.loc...

Uploadify - Passing Information Back to The Original Form

I have an Send.aspx page that has an uploadify control on it. Upload.ashx handles the file upload. I am adding a file record to a sql database in the Upload.ashx file and I need to get the ID of that record back from Upload.aspx when it is done. Can't get it working with Sessions. =( Something to do with an Adobe bug? What would t...

Uploadify not working with ASP.NET WebForms

Hi ! I'm trying to use Uploadify in a ASP.NET webforms project. The problem is that my script is not calling the generic handler. Here is the script. <input id="fileInput" name="fileInput" type="file" /> <script type="text/javascript"> $(document).ready(function() { $('#fileInput').uploadify({ 'uploader': '/Ferramenta/C...

Uploadify insecure manner upload

Does anyone knows? My web server requiring auth, while uploading a file i've got window with auth. Even if I'll put username and pass application is crashed. ...

Uploadify with ruby on rails 'bad content body' 500 Internal Server Error

I'm Getting this error in my development log while uploadify is uploading the file and in the view i get an 'IO ERROR' beside filename. /!\ FAILSAFE /!\ Thu Mar 18 11:54:53 -0500 2010 Status: 500 Internal Server Error bad content body /usr/lib/ruby/gems/1.8/gems/rack-1.0.1/lib/rack/utils.rb:351:in `parse_multipart' /usr/li...

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: http://geekswithblogs.net/apopovsky/archive/2009/05/06/working-around-flash-cookie-bug-in-asp.net-mvc.aspx I have to make the ASPXAUTH string "public" in the sense that it...

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? ...

Uploadify refuses to upload WMV, FLV and MP4 files - SOLVED

The uploadify plugin for JQuery seems very good and works for most file types. However, it allows me to upload all file types apart from the ones I need. Uploads of any other type work. I have already tried changing the fileExt parameter and also tried removing it altogether. I have testing in Google Chrome, IE7 and Firefox and none ...

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 working. I am getting frustrated... Thank you all. ...

Saving temporary file name after uploading file with uplodify

I have this script <?php if (!empty($_FILES)) { $tempFile = $_FILES['Filedata']['tmp_name']; $targetPath = dirname(__FILE__) . $_POST['folder'] . '/'; $pathinfoFile = pathinfo($_FILES['Filedata']['name']); $targetFile = str_replace('//', '/', $targetPath) . uniqid() . '.' . $pathinfoFile['extension']; move_uploaded_file($tem...

Uploadify works for Visual Studio but not for IIS 7(same machines), using Forms authentication. Does anyone have a working uploadify configuration for IIS 7 where they save to a subfolder?

I'm using the Uploadify jQuery control for client-side uploads. I think my IIS 7 configuration has issues with it. The uploadify POST immediately returns a HTTP 1.1 302 Found, back to my login page. I've tried to allow anonymous access to the uploading section(subfolder) plus the page(script) that processes the image in the web.config,...

Uploadify (flash file upload) & Integrated Windows Authentication

Hi guys I'm running into an issue with Uploadify and I hope someone can help. I have put Uploadify into my app and all works fine in dev (using the VS web server). All worked fine and checked until I deployed the app into my test environment which uses Integrated Windows Authentication. When I actually go to upload the file, the brows...

how to refresh list of photos after uploadify jquery

hello, I want to do a sort of photo editor, i use uploadify to upload images here are my files: http://www.mediafire.com/?3uzzgx5onzn the problem is: after upload the images i dinamicaly generate a thumb .. When I click on it it show me the large pictures in another page, i want to show the picture in a div or a paragraf! after I refre...

how can i set the key 'blob-key' about BlobStore?

I tried to use the jquery plugin "uploadify" to upload multiple files to My App in Google App-Engine, and then save them with blobstore, but it failed. I traced the code into get_uploads, it seems field.type_options is empty, and of course does not have 'blob-key'. Where does the key 'blob-key' come from? the code like this: def uploa...

Uploadify Not Working

EDIT: It seems the issue is to do uploadify not having a session, therefore it could not access the page I was sending it to. So make sure you point it to a page with no admin login security ;) This was due to an issue with the url that uploadify was accessing. As it has no session it couldn't retrieve anything. ...

Django upload failing on request data read error

Hi All, I've got a Django app that accepts uploads from jQuery uploadify, a jQ plugin that uses flash to upload files and give a progress bar. Files under about 150k work, but bigger files always fail and almost always at around 192k (that's 3 chunks) completed, sometimes at around 160k. The Exception I get is below. exceptions.IOError...

uploadify response problem

in my php I evaluate the the filesize if (($width !=1600) || ($height !=1100)) { echo "wrongsize"; } else { echo "justright"; } in my file i try and evaluate the the response to update the html 'onComplete' :function(event, queueID, fileObj, response, data) { if(response == "wrongsize") { $('div#uploadError').ht...

django filebrowser extensions problem

Hi, I've set django filebrowser's debug to True and wrote the extension restrictions in the model. pdf = FileBrowseField("PDF", max_length=200, directory="documents/", extensions=['.pdf', '.doc', '.txt'], format='Document', blank=True, null=True) In django admin it shows correctly with debug info. Directory documents/ Extensions ['.pdf...

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 amount of details. I've received dozens of them. I have not, however, been able to reproduce the problem myself. Some users (like myself) exp...

Flash/Javascript upload in spite of same origin policy

Can one upload files to a domain other than the domain a script originates from? For example, suppose you're hosting files on www.example.com, and you want to upload files to uploads.example.com, would the following script violate the same origin policy (using uploadify): <!-- from http://www.example.com/upload.html --> <input id="file...