简体   繁体   中英

PHP Increase Upload File Size

Is there a limit to the max uploaded size in php.ini ?

I want to change it Like so:

upload_max_filesize = 4096 M or 4 G

post_max_size = 4 G

try this

Maximum allowed size for uploaded files.
upload_max_filesize = 4000M

 Must be greater than or equal to upload_max_filesize
post_max_size = 4000M

You'll be needing to set the value of upload_max_filesize and post_max_size variables in your php.ini :

upload_max_filesize = 5000M
post_max_size = 5000M

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM