codeigniter - How to set min_size upload File in Code Igniter? -
i want stablish minimum size when user upload photo, minimun size 3mb, how can define this?
in controller call upload have this
$config['min_size'] = '3000';
in upload.php, need do?
there's no option this, nor should there 1 - doesn't make sense.
i suppose you're trying put minimum "quality" limit on photos, there 2 problems that:
- while filesize (logically) increase quality, not same thing.
- determining image quality job images-related library, not 1 uploads.
Comments
Post a Comment