Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Doesn't Show Up?
  • I have FireFox v3 and have a hosted Linux server from Hosting 24.

    I uploaded the newest version of Uploadify to
    http://superninjaproductions.net/uploads/

    As you can see, it looks like an The uploader.swf doesn't appear. However, when I view the local version in Dreamweaver, it says 'Browse'.

    Anyone know why? If you need my implement, here it is in an HTML page:


    <!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">
    <html xmlns=\"http://www.w3.org/1999/xhtml\">
    <head>
    <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" />
    <title>SNP Uploader - Powered by Uploadify</title>
    </head>

    <body>
    <input type=\"file\" name=\"fileInput\" id=\"fileInput\" />
    <script type=\"text/javascript\">
    $(document).ready(function() {
    $('#fileInput').fileUpload ({
    'uploader' : 'uploader.swf',
    'script' : 'upload.php',
    'cancelImg' : 'cancel.png',
    'multi' : true,
    'fileExt' : '*.wma;*.wmv;*.mpg3;*.mpg;*.mpegcavi;*.mov;*.jpg;*.jpeg;*.gif;*.bmp;*.png;*.tiff;*.html;*.xml;*.mp3',
    'simUploadLimit' : 5,
    'sizeLimit' : 26214400,
    'auto' : false,
    'folder' : '/uploads/files'
    });
    });
    </script>
    </body>
    </html>


    I've tried with Firefox 3, Google Chrome, Internet Explorer 8, and they don't work. ;_;

    Also, it's my birthday, so I want to get this done today as a present to myself. ^^;
  • I added more 'help' requirements if you need it.

    Please help me when you can. A lot of people are waiting for a new uploader on my site. :{
  • Actually, I got the Flash to work.

    The only thing is that when you open a file in it, there's no 'Submit' button or something.
  • Ack. Never mind. I fixed it myself. It works great now.

    I was missing the Upload and Clear links, but I got it from another thread.

    You should include them in the 'How to Implement' section. Along with putting in the code to activate jQuery.
  • It's not in the how to implement because it is a demonstration of its simplest form. Uploads are auto. Which means you don't need to have a start upload button and clear queue becomes irrelevant.
  • Hi

    How did you manage to get the flash movie to work, I have been trying but to no avail. The input box has dissapeared but no flash movie. My JS is
    $(function() {
    $('#fileInput').fileUpload({
    'uploader' : '../Uploadify/uploader.swf',
    'script': '/workspace/upload',
    'folder': 'uploads',
    'multi': 'true',
    'buttonText': 'Upload Images',
    'displayData': 'speed',
    'simUploadLimit': 2,
    'auto': true,
    'cancelImg': '../Uploadify/cancel.png'});
    });


    Any help would be great mate.
  • PokeNinja, you may have fixed it for FF, but in ie, you got some issues.
    It does not work in my IE8.