PHP see only 20 uploading files at a time

后端 未结 8 1427
面向向阳花
面向向阳花 2020-11-29 10:48

When I try to upload more than 20 files at a time, then the web server see only first 20. Any other files are just ignored. What is the problem?

Simple code to try:<

8条回答
  •  借酒劲吻你
    2020-11-29 11:27

    If you run PHP as Apache module you might want to change it at virtual host level (aka httpd.conf). You need to remember that, being a PHP_INI_SYSTEM directive, you have to use php_admin_value (regular php_value will be ignored). Sample code could be:

    
        php_admin_value max_file_uploads 250
    
    

提交回复
热议问题