I'm using uploadify to upload files. I would like to throw error and stop submitting/uploading the form if the total upload size of all files are greater than 10MB.
I browsed the document of uploadify http://www.uploadify.com/documentation/ and found "fileSizeLimit" which limits file size of a single file. But I want total upload size of all files together.
Can some one suggest me how to do this?? Below is my code
<script>
$(function() {
$('#file_upload').uploadify({
'formData' : {
'timestamp' : '<?php echo $timestamp;?>',
'token' : '<?php echo md5('unique_salt' . $timestamp);?>'
},
'swf' : 'uploadify.swf',
'uploader' : 'uploadify.php',
'auto' : false,
'buttonText' : 'Upload Document',
'fileTypeExts' : '<?php echo $allowedFileExts; ?>',
'fileSizeLimit' : '10MB',
'onQueueComplete' : function(event,data) {
document.someForm.submit();
document.someForm.reset();
}
});
});
</script>
<form id="someForm" name="someForm" action="test.php" method="post" enctype="multipart/form-data">
<input id="file_upload" name="file_upload" type="file" multiple="true"/>
<a href="javascript:$('#file_upload').uploadify('cancel','*');">Clear Queue</a>
<input onclick="$('#file_upload').uploadify('upload','*')" type="button" id="submitbtn" name="submitbtn" value="Submit" />
<div id="queue"></div>
</form>
Atlast, I found my own solution for my issue. Thanks all for your support. My code is below. might be helpful for someone.