简体   繁体   中英

Max File Upload size in PHP 5.3 and IIS 7

I have installed the PHP 5.3 and configured with IIS 7. I am building the web application to upload the multiple zip files using php. I have change the following value in php.ini of php folder:

post_max_size = 1024M
upload_max_filesize = 1024M
max_file_uploads = 1024

I have also check the phpinfo() to check the change effect and it's taking the change. The Problem is that when I upload the smaller size zip file, the file is uploaded but the larger size zip file is not uploaded. What may be the problem. Is there any thing to be change to upload the larger size zip file or need to configure in IIS 7.

try this: In php 5.3.10

upload_max_filesize = 25M

or may be in 5.3

max_file_uploads = 1024M

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