Dear all…
I am a little confused about this: Does the following code means the user can upload 500M files or 50M files in total?
array('files', 'file','types'=>'jpg, gif, png, jpeg, pdf, ppt, doc, docx, xls, xlsx, pptx, zip, rar, txt, bmp, tif, tiff, rtf, tar, tar.gz',
'on'=>'update',
'allowEmpty' => true,
'maxSize'=>1024 * 1024 * 50, // 50MB
'maxFiles' => 10,
'tooLarge'=>'File(s) in this note is larger than 50MB. Please upload a smaller file(s).'
),
So the limit size for ALL FILES are 50*10=500? or just 50?
Thanks!!