• 29-12-2018, 12:26:08
    #1
    Aldığım hata ;
    Uncaught TypeError: $(...).uploadifive is not a function
    kod :
    <script type="text/javascript">
    <?php $timestamp = time();?>
    $(function() {
    $('#file_upload').uploadifive({
    'auto'             : false,
    //'fileTypeExts'     : '*.gif',
    'formData'         : {
       'timestamp' : '<?php echo $timestamp;?>',
       'token'     : '<?php echo md5('unique_salt' . $timestamp);?>'
                         },
    'queueID'          : 'queue',
    'uploadScript'     : 'config/upload.php?islem=gif',
    'onUploadComplete' : function(file, data) {
                    console.log(data);
                    }
    });
    });
    </script>
  • 29-12-2018, 14:39:39
    #2
    uploadifive.js dosyanızın çalıştığına emin olun.

    Sürükle bırak fonksiyonunu düzgün çalıştıramıyorsanız
    'queueID'  : 'queue',
    bu koddan sonra
    dnd:false,
    Ekleyiniz.