Codeigniter: MP4 Video Upload not working

前端 未结 3 1009
我寻月下人不归
我寻月下人不归 2020-12-19 20:38

I am researching on a problem for long time but still could not find any solution.

I am uploading mp4 file using codeigniter. Before that I added mime type for mp4

3条回答
  •  北海茫月
    2020-12-19 21:09

    If everything doesn't work, rearrange the allowed type order like this, placing the video format first:

    $config['allowed_types'] = 'mp4|jpg|png|'
    

    It works in my case.

提交回复
热议问题