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 ...
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?
...
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?
...
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...
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...
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...
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 ...
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...
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">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Uploadify scriptData Sample</title>
<link rel="...
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...
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...
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.
...
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
...
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...
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) {
...
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...
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);
...
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...
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...
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....