History log of /PHP-7.4/main/php_ini.c (Results 151 – 175 of 284)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
# f66d5f0c 29-Jul-2005 foobar

- Fixed few logic errors in php*.ini search path creation as documented here:

http://fi.php.net/manual/en/configuration.php#configuration.file

#
# Before this patch:
#

- Fixed few logic errors in php*.ini search path creation as documented here:

http://fi.php.net/manual/en/configuration.php#configuration.file

#
# Before this patch:
#
# $ strace php -r 'echo 1;' 2>&1 | grep php.ini
# open("/www/php/lib/php.ini", O_RDONLY) = 3
# lstat64("/www/php/lib/php.ini", {st_mode=S_IFREG|0640, st_size=46264, ...}) = 0
#
# With this patch:
#
# $ strace php -r 'echo 1;' 2>&1 | grep php.ini
# open("./php.ini", O_RDONLY) = -1 ENOENT (No such file or directory)
# open("/usr/src/php5_1_full/sapi/cli/php.ini", O_RDONLY) = -1 ENOENT (No such file or directory)
# open("/www/php/lib/php.ini", O_RDONLY) = 3
# lstat64("/www/php/lib/php.ini", {st_mode=S_IFREG|0640, st_size=46264, ...}) = 0
#

show more ...


# 98694f91 27-Jul-2005 Antony Dovgal

ws fix


# 882cb200 27-Jul-2005 Hartmut Holzgraefe

edge case: do not remove trailing slash for root directory (Bug #33882)


# 7e071d9a 27-Jul-2005 Hartmut Holzgraefe

php.ini search logic needs to use the absolute path of the running binary
when looking for php.ini in the directory the php binary is installed in


Revision tags: RELEASE_0_9, php-5.1.0b3, php-4.4.0, php-4.4.0RC2, php-5.1.0b2
# f47c7848 17-Jun-2005 Dmitry Stogov

Improved PHP extension loading mechanism with support for module dependencies and conflicts


Revision tags: php-4.4.0RC1, php-5.1.0b1, php-5.0.1b1, RELEASE_0_3, php-5.0.4, php-4.3.11, php-5.0.4RC2, php-4.3.11RC2, php-5.0.4RC1, php-4.3.11RC1, RELEASE_0_2_4, RELEASE_0_2_3, RELEASE_0_2_2, RELEASE_0_2_1, RELEASE_0_2, php-5.0.3, php-4.3.10, SQLITE_4_3_20041227, php-5.0.3RC2, php-4.3.10RC2, php-5.0.3RC1, php-4.3.10RC1, PRE_NEW_VM_GEN_PATCH, php-5.0.2, php-4.3.9
# 2a2d49b9 17-Sep-2004 Ilia Alshanetsky

Fixed bug #30050 (Possible crash inside php_shutdown_config()).

# Patch suggestion by nw at softwarekombinat dot de


Revision tags: php-5.0.2RC1, php-4.3.9RC3, PRE_ZEND_VM_DISPATCH_PATCH, php-4.3.9RC2, php-5.0.1, php-5.0.1RC2, php-4.3.9RC1, php-5.0.1RC1, RELEASE_0_1
# 56f8195f 19-Jul-2004 Andi Gutmans

- Nuke empty_string. It is a reminanent from the time where RETURN_FALSE()
used to return "" and not bool(false). It's not worth keeping it because
STR_FREE() and zval_dtor() always have

- Nuke empty_string. It is a reminanent from the time where RETURN_FALSE()
used to return "" and not bool(false). It's not worth keeping it because
STR_FREE() and zval_dtor() always have to check for it and it slows down
the general case. In addition, it seems that empty_string has been abused
quite a lot, and was used not only for setting zval's but generally in
PHP code instead of "", which wasn't the intention. Last but not least,
nuking empty_string should improve stability as I doubt every place
correctly checked if they are not mistakenly erealloc()'ing it or
calling efree() on it.
NOTE: Some code is probably broken. Each extension maintainer should
check and see that my changes are OK. Also, I haven't had time to touch
PECL yet. Will try and do it tomorrow.

show more ...


Revision tags: php-5.0.0RC4, php-5.0.0, php-4.3.8, php-5.0.0RC3, php-5.0.0RC3RC2, php-4.3.7, php-5.0.0RC3RC1, php-4.3.7RC1, RELEASE_0_1_1, php-5.0.0RC2, php-5.0.0RC2RC2, php-4.3.6, php-5.0.0RC2RC1, php-4.3.6RC3, php-4.3.6RC2, php-4.3.6RC1, php-4.3.5, php-4.3.5RC4, php-5.0.0RC1, php-5.0.0RC1RC2, php-5.0.0RC1RC1, RELEASE_0_2_0, php-4.3.5RC3
# ac9f4cc2 14-Feb-2004 Derick Rethans

- We always need to destroy the llist though.


# 3781af53 14-Feb-2004 Derick Rethans

- Fixed zero bytes memory allocation when no extra ini files are found in the
--with-config-file-scan-dir specified directory. (patch by Eric Colinet
<e.colinet@laposte.net>)


Revision tags: php-5.0.0b4, php-5.0.0b4RC1, php-4.3.5RC2, RELEASE_1_3b6, php_ibase_before_split, php-4.3.5RC1
# dbeb4158 08-Jan-2004 Andi Gutmans

- A belated happy holidays and PHP 5


Revision tags: php-5.0.0b3, php-5.0.0b3RC2, php-5.0.0b3RC1
# fcdda2e8 06-Dec-2003 Wez Furlong

Fix a problem resolving the php.ini path under win32 terminal services environment.
Remove config-file-path option from configure under win32; it is not used except to display what might have bee

Fix a problem resolving the php.ini path under win32 terminal services environment.
Remove config-file-path option from configure under win32; it is not used except to display what might have been chosen, so lets default to the getenv() thingy.

show more ...


Revision tags: php-4.3.4, php-4.3.4RC3, php-5.0.0b2, RELEASE_2_0_0RC1, php-5.0.0b2RC1, php-4.3.4RC2, RELEASE_1_3b3
# 24793840 20-Oct-2003 Ilia Alshanetsky

Fixed unused variable warning on *nix.


# 06aae4bd 19-Oct-2003 Stanislav Malyshev

Enable setting php.ini path via the registry


Revision tags: BEFORE_HANDLERS_RESHUFFLE, RELEASE_1_3b2, php-4.3.4RC1, RELEASE_0_7, php-4.3.3, php-4.3.3RC4, RELEASE_0_5_3, php-4.3.3RC3, RELEASE_0_5_2, RELEASE_1_2b5, BEFORE_ARG_INFO, php-4.3.3RC2, php-5.0.0b1, php-4.3.3RC1
# f68c7ff2 10-Jun-2003 James Cox

updating license information in the headers.


Revision tags: BEFORE_FD_REAPPLY, php-4.3.2, php-4.3.2RC4, BEFORE_FD_REVERT, php-4.3.2RC3, RELEASE_0_9b, SPL_ALPHA, php-4.3.2RC2, RELEASE_0_6, RELEASE_0_5, init
# b5c97d8d 29-Mar-2003 Marcus Boerger

fix phpinfo() & php -i


# 26296130 22-Mar-2003 Shane Caraveo

Fix PHPRC overriding other ini files. This is how PHPRC worked prior to
4.3.x, and is usefull for applications that execute PHP and want to
emulate CGI and define alternate INI files (ie. ca

Fix PHPRC overriding other ini files. This is how PHPRC worked prior to
4.3.x, and is usefull for applications that execute PHP and want to
emulate CGI and define alternate INI files (ie. cannot use -c).

show more ...


# 63739c7d 18-Mar-2003 Marcus Boerger

give sapi modules the possibility to overwrite default ini settings


Revision tags: php-4.3.2RC1
# 1ad304c2 28-Feb-2003 Rasmus Lerdorf

MFB config-file-scan-dir crash fix


# 7e3b5089 19-Feb-2003 foobar

ws/style fixes


# ec11fe04 19-Feb-2003 foobar

Fix the possible conflicts with other libs (like libc-client)


# e52aac94 18-Feb-2003 Wez Furlong

Implement simple stream support in the ZE scanners.


Revision tags: php-4.3.1
# 173b9493 03-Feb-2003 foobar

Fixed bug: #22011 (-n must ignore all ini files)


Revision tags: PHP_5_0_dev_before_13561_fix, PHP_4_3_before_13561_fix
# d59d500a 27-Jan-2003 Ilia Alshanetsky

Moved the scandir code into it's own files so that it can be used by other
OSes where libc does not have a native scandir() implementation.


# 82f6cef4 26-Jan-2003 Shane Caraveo

Fix broken build by adding scandir and alphasort for win32


# 8d352d2d 25-Jan-2003 Ilia Alshanetsky

Fixed bug #21625 (When scanning a directory for ini files, do so in
alphabetical order. This gives a user a way to control the order in which
the ini files are loaded).
Fixed a bug that w

Fixed bug #21625 (When scanning a directory for ini files, do so in
alphabetical order. This gives a user a way to control the order in which
the ini files are loaded).
Fixed a bug that would make the code try to read files without an extension
as ini files.

show more ...


12345678910>>...12