How to change the maximum files upload limit in PHP
Last Update : 13 Dec, 2022In this article, you will learn to change PHP's maximum file upload limit.
When you are developing a PHP bases application, sometimes you need to upload files through the forms in your application. Also, by default, you can upload 20 files via a single request. But, when you work with more than 20 files, PHP does not allow you to upload them.
If you want to upload more than 20 files. You must increase the maximum number of files to upload. Then you can modify the max_file_uploads variable value in the php.ini file.
The max_file_uploads variable holds the value of the maximum number of files that can be uploaded via a single request.
You can change this variable by following the steps.
- Find and open the php.ini file.
- Open the php.ini file in a text editor.
- Search for the max_file_uploads variable.
- Change the upload count as per your need.
max_file_uploads=40