Codeigniter : mp4 video won't upload, no error

前端 未结 1 1852
生来不讨喜
生来不讨喜 2021-01-16 20:49

I\'m creating a form to upload video file, but I have a strange error.

My form is like this:

相关标签:
1条回答
  • 2021-01-16 21:17

    Efectively you have to change two parameters in PHP ini file

    post_max_size = 100M
    upload_max_filesize = 100M
    

    But you may also want to change the apache abuse protection parameter (100M)

    LimitRequestBody 1073741824
    

    And by another hand, PHP have a time limit too of 30 sec per script, so your script will die at 30 seconds of running.

    You may also want to increase the time to be sure your script does not die meanwhile you are uploading, copying etc,

    set_time_limit(600);  // 10 minutos execution
    
    0 讨论(0)
提交回复
热议问题