Error in file uploading in php

前端 未结 3 1337
执念已碎
执念已碎 2021-01-29 16:50

My HTML code

3条回答
  •  情书的邮戳
    2021-01-29 17:07

    It looks like for video files, the file size is too large (126 MB, as reported by OP). So the PHP script is never receiving the file.

    There are a few places where you can look to adjust this. First, you can set a max file size in the HTML form:

     
    

    Also, you may need to adjust some variables in you php.ini file:

    http://www.cyberciti.biz/faq/linux-unix-apache-increase-php-upload-limit/

提交回复
热议问题