Home Forums CodeIgniter How to upload .webp file in CodeIgniter

Viewing 1 reply thread
  • Author
    Posts
    • #160
      avi
      Participant

      I want to upload webp images using PHP CI Framework, Can anyone help how to upload .webp instead of jpg?

    • #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';

Viewing 1 reply thread
  • You must be logged in to reply to this topic.
Scroll to Top