Hello,
I am running into trouble trying to upload a file on a load balanced environment over SSL. The AJAX request to the server (before it uploads the file to Amazon) is failing because the url is incorrect. The load balancer/SSL setup is complicated, but it basically causes the application to see the request https://my.website.com/ as http://my.website.com:81/. Thus, the rendered javascript is DirectAmazonUploader.set_url("http://my.website.com:81/..."), which contains an invalid URL (port 81 is not open publicly).
I understand I will probably have to modify the source to fix this problem. I just thought I'd throw this out there to see if anyone had encountered a similar problem.
Thanks,
--Ryan Triggs