>memphisさん
ご回答ありがとうございます、先ほどようやく原因が分かりました。
makeは忘れていなかったのですが、make cleanを行わなかったため、以前--with-config-file-path無しでmakeしたさいの設定がそのまま残っていたようです。
memphisさんの「makeを忘れてる?」を見てもしかしたらと思い、試してみたら正常に読み込まれるようになりました。
http://php.net/manual/ja/configure.php
If you have compiled php without specifying a --with-config-file-path=PATH
then reconfigure php using --with-config-file-path=PATH, 【you must do a "make clean"】 then "make" & "make install" before reinstalling.
If you don't make clean first, phpinfo will report the new location set by --with-config-file-path=PATH, 【but actually be looking for php.ini in the old location.】
お礼
>memphisさん ご回答ありがとうございます、先ほどようやく原因が分かりました。 makeは忘れていなかったのですが、make cleanを行わなかったため、以前--with-config-file-path無しでmakeしたさいの設定がそのまま残っていたようです。 memphisさんの「makeを忘れてる?」を見てもしかしたらと思い、試してみたら正常に読み込まれるようになりました。 http://php.net/manual/ja/configure.php If you have compiled php without specifying a --with-config-file-path=PATH then reconfigure php using --with-config-file-path=PATH, 【you must do a "make clean"】 then "make" & "make install" before reinstalling. If you don't make clean first, phpinfo will report the new location set by --with-config-file-path=PATH, 【but actually be looking for php.ini in the old location.】