Re: [PHP-DEV] Default INI entries overwrite php.ini entries

2001-01-15 Thread Cynic
is this related to http://bugs.php.net/bugs.php?id=6990 ? At 09:34 14.1. 2001, Zeev Suraski wrote the following: -- >Yeah, we could do that. The behavior until now was that you have to put relevant INI >entries before you load the mo

Re: [PHP-DEV] Default INI entries overwrite php.ini entries

2001-01-14 Thread Zeev Suraski
Yeah, we could do that. The behavior until now was that you have to put relevant INI entries before you load the module. Zeev At 08:37 14/1/2001, Sascha Schumann wrote: > > register_ini_entries(), which is the service function that modules use to > > register their entries, doesn't use alter_i

Re: [PHP-DEV] Default INI entries overwrite php.ini entries

2001-01-13 Thread Sascha Schumann
> register_ini_entries(), which is the service function that modules use to > register their entries, doesn't use alter_ini_entry(). It checks the > configuration hash (=php.ini) for a default value. If it exists, it uses > it as the default value (it doesn't use alter_ini_entry()), if it doesn'

Re: [PHP-DEV] Default INI entries overwrite php.ini entries

2001-01-13 Thread Zeev Suraski
At 14:21 13/1/2001, Sascha Schumann wrote: > Shouldn't php.ini entries overwrite defaults and become the > master value? Yep > That is what happens currently: php.ini entries are applied > using zend_alter_ini_entry(), and the default value is stored > in orig_value. On the