uploadify

Implementation of Uploadify with Zend

Okay, I have read, and tried a lot of things on how to implement uploadify with Zend, and I'm probably overlooking something, but I'm completely stuck. It seems my action isn't called. All the uploadify are placed in one directory inside the public folder. The upload button is called in a fancybox instance and is loaded from a hidden ...

uploadify in firefox is not working

Hi, I have the uploadify control in my app. When running in IE, everything is ok. but when in firefox, it is giving the error: uploadify flashVer.split is not a function has anyone experienced this? ...

showing thumbnail image right after selecting in web form

I'm using Uploadify jQuery plugin to upload images to my server. This plugin doesn't show thumbnail after image file is selected and before the file is uploaded. It shows the filename but I need thumbnail next to it. Is there any way to display selected image before its uploaded? ...

multiple uploadify controls inside traditional form

My MVC app has a complex form with a bunch of input fields. Somewhere in between those text input controls are some file inputs. For those I'd like to use uploadify. I expect to have an "upload file" button below each file input control as well as a "submit" button at the bottom of the page for the remaining text input fields. When I p...

Uploadify Error in IE8

I can't get uploadify (jQuery plugin) to work in IE8, it works fine in all other browsers. When I go to upload the file I'm getting this error: Object doesn't support this property or method And it's on this line in uploadify.js: document.getElementById(jQuery(this).attr('id') + 'Uploader').startFileUpload(ID, false); I can't figur...

Uploadify won't work with my asp.net MVC 2 application.

Hello all, When I use uploadify to upload photos to the server I use the following script (The script is placed in the Photo.aspx (this is the view of the UploadController and the Photo action)): <script type="text/javascript"> $(document).ready(function () { $("#fileInput").uploadify({ uploader: "../../Ima...

How to prevent form submission before progress bar display

I am using Uploadify for a real time application and so far its working fine except this one issue. I have 6 Browse buttons for uploading 6 files (with multi - 'true' for each) and I have a submit button as well on my page (JSP). If the user selects a file on any of these Browse buttons, there is a slight delay before the progress bar ...

uploadify, IE load button, but don't send

Hi, i have uploadify script in my php site. With FF all everything good, but in IE(7, 8) don't work. I click browse button and load image, show in page: http://www.ajaxrain.com/rainImage/1april0901.jpg But when I push send link, nothing happens. Why? How fix? My send button code: <a href="javascript:$('#fileInput').uploadifyUplo...

uploadify and DOCTYPE + IE

Hi, why when i put DOCTYPE in my page don't work uploadify script with IE? <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt; <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>Uploadify scriptData Sample</title> <link rel="...

uplodify status div get replaced if uploaded same file twice

i used uplodify to upload multiple files... i have shown the status for each files like in the demo.. but while uploading a large file (>5mb) at that time if i upload that same files again. the status div for the particular div get replaced..with failure message.. i hope same id is generated at that time which replaces the div with fail...

How do I return a text server-response to Uploadify on completed upload?

This is a bit of an premature post, because I'm still grokking the code. But I've looked for a day, and I suspect it's something simple I'm missing about the Actionscript environment. Goal: I have Uploadify uploading to the Rails server. When the file gets uploaded to the server, it gets renamed. I want to respond with the new filepa...

use two jquery uploadify scripts

Hi, Is it possible to use two uploadify scripts in one page? When first script finishes uploading data, then second one should start. Is this possible? ................... sorry that is not explained clearly. I wish have two uploadify script in one page. One uploadify script upload only images, second only pdf files. ...

Uploadify with Joomla cookie and session problem

Hi, I'm using Uploadify to upload the file But I'm not able to get the right session of the user. So is there any solution for that? I have look around and have saw some suggest that include the session_name and session_id into the scriptData: {'session_name' : 'session_id' } but it didn't work out. Thanks for help ...

jQuery and PHP session issue

In uploadify I have a problem passing variable into the php script. Here's the code: $(document).ready(function() { var counter = 0; $("#uploadify").uploadify({ 'uploader' : 'scripts/uploadify.swf', 'script' : 'scripts/uploadify.php?upload', 'scriptData' : {'PHPSESSID' : '<? echo sessi...

uploadify | changing uploadifysettings on the fly

Hi guys, 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 to accomplish that (note uuid is a jquery plugin to generate uuids): 'onComplete' : function(event,queueId,fileObj,response) { ...

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" /> <script type="text/javascript"> $(document).ready(function() { $('#fileInput').uploadify({ uploader : '/uploadify/u...

jQuery Uploadify - How to use onComplete?

Hello, I'm using uploadify: http://www.uploadify.com/ And have an onComplete: onComplete: function(response) { alert(response); }, My server is sendin back album_id... How do I access that in the response? Thanks UPDATING onComplete: function(response) { jsonObject = jQuery.parseJSON(response.response); ...

Uploadify fails to open file browser?

I have an implementation of uploadify running on top of a PHP application. It was working just fine on my test machine. However, I just uploaded it on to my production machine and it is failing. Uploadify correctly replaces the input field and presents the button. However, when the button is clicked nothing happens. It completely fa...

Rails 3 -NoMethodError (undefined method `original_filename

Hello! I'm using Rails 3, Uploadify, to send images to S3. Right now all the images being upload have the MIME: application/octet-stream I'd like to fix that but I'm getting the following error: NoMethodError (undefined method `original_filename' for #<ActiveSupport::HashWithIndifferentAccess:0x107c81998>): app/models/photo.rb:29:in...

Can we use Uploadify simply for progressive enhancement on file upload inputs?

When I do file inputs, I usually set their opacity to 0 and position a browse button beneath them (simply because the file inputs are kind of ugly and inflexible by themselves - and I must to meet the designer's requirements). I just stumbled across Uploadify. My form is working at the moment as a standard form with file input uploads....