Im using the plupload.com/example_queuewidget.php jquery widget - but some images (mainly jpegs over 1MB) get uploaded but I can not open them. Even when manually downloading them via ftp - they are corrupted/broken. Has anyone ever had a similar problem and knows how to fix this?
Edit: Images work before uploading them.
Using the code from the example:
$("#uploader").pluploadQueue({
// General settings
runtimes : 'flash,gears,silverlight,browserplus,html5',
url : '../../upload.php',
max_file_size : '6mb',
chunk_size : '1mb',
unique_names : true,
// Specify what files to browse for
filters : [
{title : "Image files", extensions : "jpg,gif,png"}
],
// Flash settings
flash_swf_url : '/assets/script/plupload/plupload.flash.swf',
// Silverlight settings
silverlight_xap_url : '/assets/script/plupload/plupload.silverlight.xap'
});
// Client side form validation
$('form#galerie_upload').submit(function(e) {
var uploader = $('#uploader').pluploadQueue();
// Files in queue upload them first
if (uploader.files.length > 0) {
// When all files are uploaded submit form
uploader.bind('StateChanged', function() {
if (uploader.files.length === (uploader.total.uploaded + uploader.total.failed)) {
$('form#galerie_upload')[0].submit();
}
});
uploader.start();
} else {
alert('You must queue at least one file.');
}
return false;
});
upload.php is the example upload.php from here
Hope someone stumbled over this already.
have a nice day!