Home Forums CodeIgniter How to upload .webp file in CodeIgniter Reply To: How to upload .webp file in CodeIgniter

#161
avneesh
Participant

Add webp MIME Type in config file: ./application/config/mimes.php.
'webp' => array('image/webp'),

And in your upload config “allowed_types” add “webp” :
$config['allowed_types'] = 'gif|jpg|jpeg|png|webp';

Scroll to Top