Locating php.ini

Your system may well have more than one PHP version / install. Even with the same version there can be different versions, e.g. cli and fpm

The best way to find out what version apache is using is to load a page with the following:

  phpinfo();
  die;

Edit php.ini

Creating a backup copy first
cp /etc/php/7.4/fpm/php.ini /etc/php/7.4/fpm/php-old.ini
Editing the file
sudo nano /etc/php/7.4/fpm/php.ini
Searching for text within file

CTRL+W
Enter your text, press return

To find the next occurrence use CTRL+W again and just press return

Specific values

upload_max_filesize – Found that apache restart didn’t update, server reboot caused new setting to load.

post_max_size – Found that apache restart didn’t update, server reboot caused new setting to load.

USEFUL?
We benefit hugely from resources on the web so we decided we should try and give back some of our knowledge and resources to the community by opening up many of our company’s internal notes and libraries through mini sites like this. We hope you find the site helpful.
Please feel free to comment if you can add help to this page or point out issues and solutions you have found, but please note that we do not provide support on this site. If you need help with a problem please use one of the many online forums.

Comments

Your email address will not be published. Required fields are marked *