PHP see only 20 uploading files at a time

后端 未结 8 1449
面向向阳花
面向向阳花 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条回答
  •  猫巷女王i
    2020-11-29 11:43

    You can create php.ini file in your website directory on hosting, and write this in it:

    max_file_uploads = 400

    This is allowed way to overwrite php.ini on most hostings (but not in localhost XAMP, etc.) as far as I tried

提交回复
热议问题