PHP / Apache: Set Max File Upload and Post Size | LeetDev
1. Locate php.ini
Firstly, you need to locate your php.ini file. In this example, our php.ini is located in /etc/php/7.2/apache2/php.ini, however, this may be different for you depending on your PHP version.
2. Edit php.ini
Open your php.ini file with nano.
sudo nano /etc/php/7.2/apache2/php.iniupload_max_filesize
In nano, press CTRL + W and search for upload_max_filesize and change the value to 64M (for 64 megabytes) or whatever value you require.
/etc/php/7.2/apache2/php.ini
upload_max_filesize = 64Mpost_max_size
Press CTRL + W again and search for post_max_size and change the value to 64M (for 64 megabytes) or whatever value you require.
/etc/php/7.2/apache2/php.ini
post_max_size = 64MSave file and exit. (Press CTRL + X, press Y and then press ENTER).
3. Restart Apache/PHP
Restart Apache to apply changes.
sudo systemctl restart apache2If you are using PHP-FPM, you may need to restart PHP-FPM service separately.
PreviousSetting up SSL Certificates for HAProxy with certbotNextUpgrade centos7 openssh & openssl to the latest version
Last updated
Was this helpful?