How to increase and set upload size to 100MB in PHP-Apache
To increase the maximum upload size to 100 MB in PHP running on Apache, you can follow these steps: Open the PHP configuration file: sudo nano /etc/php/7.x/apache2/php.ini Change the following values: upload_max_filesize = 100M post_max_size = 100M Save and close the file. Restart Apache: sudo systemctl restart apache2 The maximum upload size has now been … Read more