如何更改php.ini设置以便我可以更改通过文件传输发送的最大数据? [重复]

如何更改php.ini设置以便我可以更改通过文件传输发送的最大数据?  [重复]

问题描述:

This question already has an answer here:

I have created a form with a file upload script, but when i run it, my browser tells me that the maximum upload limit has been exceeded. How do I fix this?

</div>

此问题已经存在 这里有一个答案: p>

  • 更改最大上传文件大小 15 answers span> \ n li> ul> div>

    我创建了一个带有文件上传脚本的表单,但是当我运行它时,我的浏览器告诉我 已超出最大上传限制。 我该如何解决这个问题? p> div>

By file transfer hope you meant file upload.

There are two values to be set to change the file transfer size upload_max_filesize and post_max_size in your php.ini. Please see the code below

; Maximum allowed size for uploaded files.
upload_max_filesize = 20M

; Must be greater than or equal to upload_max_filesize
post_max_size = 20M

You can set any number you want as required. 20M means 20 MB.