yui-uploader

YUI Uploader 2.6.0 example

I'm trying to simply use some of the examples and instructions regarding the YUI-Uploader, and I'm being frustrated by a number of issues. The "YUI Library: Uploader" cheat sheet's simple use case doesn't work for me because all the listed methods except addListener() do not exist on the myUploader object. The example is for version 2....

How can I access files uploaded with Yui uploader 2.6.0 from a server running Google App Engine

I am using the Yui Uploader 2.6.0 advanced example and apparently it is working fine on the client side. Basically the uploadAll function in javascript passes to the uploader the url containing the script to handle the uploaded file/s on the server: function upload() { if (fileList != null) { uploader.setSimUploadLimit(parseInt(docum...

YUI Uploader + SSL + Firefox

If your server has SSL enabled, and you're using YUI uploader, is it possible to upload using Firefox browser? We are currently having problems with firefox but uploading with IE (7) seems to be ok. Any ideas why it fails in Firefox (Note: the certificate was already accepted ) ? Thanks, Franz ...

Handling errors with YUI's uploader

I am using yui-uploader from YUI 2.6.0 When an upload error occurs, I disable the uploader, show a warning, and then when the user clicks ok, enable it again. Subsequent to this, selection of new files works, and the file list is populated correctly. However the uploads do not start. Has anyone encountered this problem? How do you han...

YUI 2.7.0 File Uploader - Firefox 3.5 / flash 10 / iis 6

i have a project that uses the file uploader, i have taken the example of the queue management, and altered it to upload to the location i would like it to save to, and all the custom settings, and skins i have given it. i run it locally through vs2008 - running on my local iis 5.5 (xp machine), the post to page is aspx(vb.net) and test...

(YUI uploader) listeners not fiering events

I'm trying to use YUI uploader, but I'm not able to open the file dialog window when I click the browse button. I'm following (more or less) the example on Yahoos demo. Here is my HTML code: <div id="fileProgress"> <input id="fileName" type="text" size="40" /> <input id="uploaderUI" name="uploaderUI" class="submitButton" type="butt...

Not able to run upload.php using YUI Uploader

I'm trying to get YUI uploader work on my computer / localhost, by using this example . The javascript the page use, can be view here. The upload button has the following handler: YUE.on('upload', 'click', this.upload, null, this); (...) upload : function(e) { YUD.get('browse').style.display = 'none'; this.uploader.disable(...

YUI Uploader hangs after choosing file

Below is my entire code from a User control that contains the YUI Uploader. Is there something I'm missing. Right now, when I step through the javascript code in Firebug, it hangs on the first line of the upload() function. I have a breakpoint on the first line of the ashx that handles the file, but it is never called. So, it doesn't ...

YUI Uploader - How to tell when all files have been uploaded?

I'm using the YUI 2 Uploader to upload some files. My users will be uploading more than one file, so I want to use YUI Uploader's 'file queue'. That is all working successfully. I disable the uploader when the files are uploading, so people can't add new files to the queue once they start uploading the files. I want to do something (in ...

Struts 2 and YUI Uploader issues

I have a project that I'm working on where we need to be able to select multiple files for upload at one time. Since we already use YUI for several other things this seemed to be an fairly simple request. I did some research and decided to use YUI's Uploader to do the work. Built a simple example to get familiar with the component. The ...