无法上传大小超过5 MB的文件,html输入文件大小有问题


Not able to upload file with size more than 5 MB, issue with html input file size

我正在开发PHP并制作上传视频的脚本,我已经将PHP.ini上的最大文件大小设置为20MB,但当我选择大于5MB的视频时,表单甚至不会发布,而文件大小小于5MB。

我在php.ini 中更新了这些值

post_max_size = 20M
upload_max_filesize = 500M

下面是我的表格:

<?php
if(isset($_POST['submit'])) {
    echo "hello";
}
?>
<form method="post" enctype="multipart/form-data" action = "">
<input type="file" name = "file" data-max-size="100048">
<input type="submit" name = "submit">
</form>

非常感谢您的帮助。

试试这个,从文件输入字段中删除数据最大大小属性,并使用HTML隐藏字段:

<input type="hidden" name="MAX_FILE_SIZE" value="6000000" />