在表单中使用两个文件控件时无法上传文件 - PHP

时间:2015-06-04 09:38:35

标签: php html

我在使用PHP上传文件时遇到问题。这些文件托管在AWS上。我的表格如下:

<form name="hello" method="post" action="" enctype="multipart/form-data" >
        <label>Image</label>
        <input type="file" name="image" />
        <label>Audio file</label>
        <input type="file" name="audio_file" />
        <input type="submit" value="Add" />  
</form>

当我提交此表单时,页面继续加载没有任何反应。我尝试删除一个文件控件,它工作正常,即一个文件上传成功。如果我只提交一个文件,那么它可以正常工作,但是当有两个不同的文件控件时则不行。

PHP ini设置如下所示:

max_file_uploads 10
memory_limit 1024M
upload_max_filesize 32M
post_max_size 32M

不确定是什么问题。

谢谢!

1 个答案:

答案 0 :(得分:1)

问题在于我们的内部网络(静态IP)。