I was looking for php.ini to adjust some memory settings for my WordPress droplet when I noticed that there are multiple php.ini files.
I found one in /var/www/html and one in /etc/php/7.0/apache2. I altered the later and things seem to be working, but what is the purpose of having 2 php.ini files and what does each control?
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
The one in /etc/php/7.0/apache2 is the base configuration that PHP uses. By default, PHP does not read php.ini files located in your website’s document root. You can configure Apache to use a different file by adding PHPINIDir /path/to/directory/containing/it to its configuration file (not the virtual host config), but you usually wouldn’t need to do so.
So, in short, only the one in /etc/php/7.0/apache2 matters. The other one is not used. You can verify which one is being used by placing a file containing the following and then browsing to it:
<?php
phpinfo();
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.