Craig,
No luck. Both of your suggestions don't work.
I've done a strace on httpd by issuing the following
command:
strace -o /tmp/file /usr/sbin/httpd -X
after that i do a grep on php.ini:
grep php.ini /tmp/file
The resulting output is
open("./php.ini", O_RDONLY) = -1 ENOENT
(No such file or directory)
open("/php.ini", O_RDONLY) = -1 ENOENT
(No such file or directory)
open("/usr/local/lib/php.ini", O_RDONLY) = 4
lstat("/usr/local/lib/php.ini", {st_mode=S_IFREG|0755,
st_size=24287, ...}) = 0
open("./php.ini", O_RDONLY) = -1 ENOENT
(No such file or directory)
open("/php.ini", O_RDONLY) = -1 ENOENT
(No such file or directory)
open("/usr/local/lib/php.ini", O_RDONLY) = 4
lstat("/usr/local/lib/php.ini", {st_mode=S_IFREG|0755,
st_size=24287, ...}) = 0
Hmmm.... Any ideas?
Thanks
Joe