15th January 2008 - 3 minutes read time
After installing PHP on Apache you can use the php.ini file to set various different options to do with PHP. When Apache starts it uses what is contained in this file to set up and run PHP.
On both Windows, Unix and Linux systems Apache will look in a number of default locations for the php.ini file before giving up. You can explicitly tell Apache 2.x where to look for the file by using the PHPIniDir directive in the http.conf file.
#
# This is the directory containing php.ini
#
PHPIniDir "/usr/local/apache/conf"
For Apache 1.3.x this can be set using the SetEnv PHPRC directive.
# specify the directory where php.ini is
SetEnv PHPRC /usr/local/apache/conf
This not only speeds up the time taken for Apache to start, but will also allow you to make sure that the php.ini file you are using is the one you are editing.