Running PHP/Apache on a redhat 6.5 environment. Running into some issues with the PHP installation. PHP was installed and compiles from source and I used the following command to configure it.
'./configure' '--prefix=/u/g/php' '--with-libxml-dir=/u/g/util/libxml2/' '--with-apxs2=/u/g/apache/bin/apxs' '--with-config-file-path=/u/g/php/config' '--enable-mbstring'
This works I can run php and appache. However I am trying to enable some extension and the php.ini file I have configured is not getting read.
In the php_info() it has
Configuration File (php.ini) Path /u/g/php/config
However as I understand it, it should contain the file like so /u/g/php/config/php.ini
Started/stopped the service..
Any ideas?