Home › Forums › CodeIgniter › How to upload .webp file in CodeIgniter › Reply To: How to upload .webp file in CodeIgniter
October 3, 2024 at 12:20 pm
#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';