Ok this is just plain weird.
My setup: Apache + PHP. Here's how I configured php during the build from source:
./configure \
--with-apxs2=/usr/local/apache/bin/apxs
--with-mysql
--prefix=/usr/local/apache/php
--with-config=/usr/local/apache/php
--enable-track-vars
--enable-force-cgi-redirect
--disable-cgi
--with-zlib
--with-gettext
The path to php.ini is: /usr/local/apache/php/php.ini
However PHP has somehow convinced itself that php.ini actually lives here:
/usr/local/apache/php/lib/php.ini.
But there is no php.ini at that location. Huh?
I've run find from / and there is only one php.ini. In the location I placed it.
Can someone please shed some light on this odd situation?
Thanks a lot.
-Douglass Turner