Discussions
Sign In
Howdy, Stranger!
It looks like you're new here. If you want to get involved, click one of these buttons!
Sign In
Apply for Membership
Categories
All Discussions
3,338
Uploadify
↳ Implementation Help
2,547
↳ Bugs
525
↳ Feature Requests
177
↳ Showcase
66
UploadiFive
↳ Implementation Help
14
↳ Bugs
3
↳ Feature Requests
6
Implementation Help
sizelimit alert
umarrana
April 2009
hello friends nice work you have done i need your lil more help i want to show an alert when size is invalid or i want to show custom message for the if the size is biggerthanks here is my code
$('#fileInput3').fileUpload({
'uploader':'uploader.swf',
'script':'upload.php',
'cancelImg':'cancel.png',
'folder':'uploads',
'sizeLimit':'800',
'fileDesc': 'JPG Image Files (*.jpg), GIF(*.gif)',
'fileExt': '*.jpg;*.gif;',
onComplete: function(a, b, c, d, e){
if (d !== '1')
alert(d);
window.location = "index.php";
},
});
TravisN.
April 2009
use onError
umarrana
April 2009
sizelimit is not working i allowe the 800 but its not uploading 10k image
TravisN.
April 2009
800 is 800 bytes. If you want 800 then you need to multiply it by 1024, as there is 1024 bytes in a KB
umarrana
April 2009
can you please tell me how can i run the mysql query after uploading
kkraj1986
September 2011
remove quotes on 800
Add a Comment
Powered by Vanilla