I want to lock my php configuration and disable loading other php configurations rather than the default (which in my case is located at /usr/local/php/lib/php.ini) I want to disable the "Scan this dir for aditional.ini" or if there's a way to set the vars from php.ini as permanent I would go for it.

Any suggestions ?

Thanks in advance,
Me.

link|improve this question

80% accept rate
feedback

2 Answers

up vote 5 down vote accepted

In order to do this you need to recompile php and remove the option --with-config-file-scan-dir=/whateverdir/php.d

link|improve this answer
Thanks! That did it! :) – tftd Jan 20 '11 at 23:06
feedback

As an alternative that doesn't require recompiling PHP, you can set the PHP_INI_SCAN_DIR environment variable. If you are using PHP as an Apache module, you may add something like this to the Apache configuration file in which the PHP module is loaded:

SetEnv PHP_INI_SCAN_DIR /usr/local/zend/etc/conf.d/

If using CGI/FastCGI you can also use the -n -c command switches as noted here:

https://bugs.php.net/bug.php?id=45114

link|improve this answer
1  
Much better solution. I'd rather use the system packages than recompile and manage it myself. – Matthew Scharley Sep 12 '11 at 3:20
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.