This forum is a community forum meant for users of the plugin to collaborate and help solve issues with implementation, etc. Unfortunately, as the creator of the plugin, I do not have much time to attend to every request here as this is only a side project and I must work a full-time job to provide for my family. This is how I keep the Flash version free and the HTML5 version low cost.
UploadiFive 1.1.1 has been released which includes a small fix for added support on touch devices including iOS 6 devices.
not working in webkit
  • Hello, my following code is not working in Chrome/Safari, however it works in Firefox. Any ideas why?


    <?php foreach ($query->result() as $row): ?>
    <li>
    <table width="570" class="imageDragRow" border="0" cellspacing="0" cellpadding="0">
    <tr>
    <td width="20" align="center"><?php echo $i; ?></td>
    <td width="100" align="center">
    <img src="../../social_icons/<?php echo $row->image; ?>" style="vertical-align:middle">&nbsp;&nbsp;
    <input id="fileInput<?php echo $row->id; ?>" name="fileInput<?php echo $row->id; ?>" type="file" style="vertical-align:middle">
    </td>
    <td align="center">
    <input type="text" size="45" value="<?php echo $row->url; ?>">
    </td>
    <td width="50" align="center">
    <?php if ($row->visible == 'true'): ?>
    <input type="hidden" class="visValue" value="true"><img class="clickable" src="../../assets/adminIcons/visibleT.png" onClick="javascript:changeVisibility(this)">
    <?php else: ?>
    <input type="hidden" class="visValue" value="false"><img class="clickable" src="../../assets/adminIcons/visibleF.png" onClick="javascript:changeVisibility(this)">
    <?php endif; ?>
    </td>
    <td width="40" align="center">
    <img class="clickable" src="../../assets/adminIcons/delete.png" onClick="javascript:deleteRow(<?php echo $row->id; ?>, this, 'social')">
    </td>
    </tr>
    </table>
    </li>
    <script>
    $(document).ready(function() {
    $('#fileInput<?php echo $row->id; ?>').uploadify({
    'script' : '<?php echo base_url(); ?>uploads/social_handler/<?php echo $row->id; ?>/',
    'uploader' : '<?php echo base_url(); ?>assets/uploadify/uploadify.swf',
    'cancelImg' : '<?php echo base_url(); ?>assets/uploadify/cancel.png',
    'buttonImg' : '<?php echo base_url(); ?>assets/adminIcons/replaceimage24.png',
    'fileExt' : '*.png',
    'fileDesc' : 'png files',
    'sizeLimit' : 1000000,
    'height' : 20,
    'width' : 24,
    'auto' : true,
    'multi' : false,
    'queueID' : 'upload_queue',
    'onAllComplete' : function(){getContent('edit_social_media', 2)}
    });
    });
    </script>
    <?php $i++ ?>
    <?php endforeach; ?>
  • I'm still unable to get this working... Anyone have any ideas? the buttonImg option seems broken in webkit
  • Please download and use Uploadify 3.1 form the site now. There's all new documentation and it's more stable and secure.
  • Hi Ronnie,

    I've switched to 3.1 as suggested but I'm still having the same issue. Nothing happens when I click the button in Chrome/Safari


    <!doctype html>
    <html>
    <head>
    </head>
    <body>

    <input type="file" name="file_upload" id="file_upload" />

    <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script&gt;
    <script src="jquery.uploadify-3.1.min.js"></script>

    <script>
    $(function(){
    $("#file_upload").uploadify({
    'swf' : 'uploadify.swf',
    'uploader' : 'uploads/',
    'buttonImage' : 'replaceimage24.png',
    'fileTypeDesc' : 'png files',
    'fileTypeExts' : '*.png',
    'auto' : true,
    'multi' : false,
    'width' : 24,
    'height' : 20
    });
    });
    </script>
    </body>
    </html>
  • I'm not sure if I did this correct. but i disabled the flash that comes built into chrome and installed the debugger flash and this pops up when I click the button


    SecurityError: Error #2060: Security sandbox violation: ExternalInterface caller file:///C:/Users/Morgan/Desktop/uploadify/uploadify.swf?preventswfcaching=1335433658589 cannot access null.
    at flash.external::ExternalInterface$/_initJS()
    at flash.external::ExternalInterface$/call()
    at ExternalCall$/Bool()
    at SWFUpload()
  • hmm ok nevermind that error goes away when I upload the files to my server...
  • That > isn't there at the end of the jquery script import in your code is it?