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.
How to debug inside the uploadify.php
  • Hi there, I'm trying to data that were passed on the uploadify.php, I put a print_r($_FILES) on uploadify.php and wanted to see the output of it but unfortunately I can't see it. How would I see it. I'm aware that uploadify uses flash to interact with the php, but don't have an idea how to see the print_r($_FILES). Please teach me. Thanks!
  • check out the documentation on onComplete and onError. You can echo/print_r what you need in the uploadify.php and then use alert(response); in the onComplete function. Good luck
  • Thanks for your help. It did work.
    My question again is how do I get the file type of the uploaded files. I'm uploading a gif,png and jpeg, but when I checked on the $_FILES['Filedata']['type'], it says application/octet-stream, it should be like image/jpeg, or image/png, or image/gif.

    How would I do that?
  • You can try using the last 3 characters of the $_FILES['Filedata']['name']



    $extension = substr($_FILES['Filedata']['name'], -3);



  • I have the same problem but i don't need extension , i need file type like image/jpg or image/png
    please help me