History log of /PHP-8.0/php.ini-production (Results 26 – 50 of 250)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
Revision tags: php-7.4.0RC3, php-7.2.23
# 1806ce9c 24-Sep-2019 Nikita Popov

Add max_depth option to unserialize()

Add a max_depth option to unserialize and an unserialize_max_depth
ini setting, which can be used to control the depth limit. The
default value

Add max_depth option to unserialize()

Add a max_depth option to unserialize and an unserialize_max_depth
ini setting, which can be used to control the depth limit. The
default value is 4096.

This option is intended to prevent stack overflows during the
unserialization of deeply nested structures.

This fixes bug #78549 and addresses oss-fuzz #17581, #17589, #17664,
and #17788.

show more ...


Revision tags: php-7.3.10, php-7.4.0RC2, php-7.2.23RC1, php-7.3.10RC1, php-7.4.0RC1
# 790ed7d5 02-Sep-2019 Nikita Popov

Enable display_startup_errors by default


# 61dcae50 03-Sep-2019 Christoph M. Becker

Document opcache.preload_user directive


# cd63908a 02-Sep-2019 Christoph M. Becker

Fix #76577: outdated documentation concerning track_errors


# ea5854ca 30-Aug-2019 Nikita Popov

Make error_reporting=E_ALL the default


Revision tags: php-7.1.32, php-7.2.22, php-7.3.9
# f08095fa 27-Aug-2019 Pavel Dyakonov

add ffi to php.ini extension [ci skip]


Revision tags: php-7.4.0beta4, php-7.2.22RC1, php-7.3.9RC1, php-7.4.0beta2, php-7.1.31, php-7.2.21, php-7.3.8, php-7.4.0beta1
# e2ed7e67 16-Jul-2019 Christoph M. Becker

Allow multiple cache instances per user/host on Windows

Formerly, there was at most a single OPcache instance per user and the
so called system ID (which is determined from the PHP versi

Allow multiple cache instances per user/host on Windows

Formerly, there was at most a single OPcache instance per user and the
so called system ID (which is determined from the PHP version).
Sometimes multiple OPcaches might be desired, though, particularly for
unrelated CLI scripts, which may even be necessary (e.g. for our test
suite in parallel mode).

We therefore introduce a new INI directive `opcache.cache_id` which
allows to configure independent OPcache instances for the same user.

We also use `GetUserNameW()` instead of `php_win32_get_username()`,
because the latter retrieves the user name encoded in the
`default_charset`, which can obviously yield different results for
different charsets, leading to OPcache "incompatibilities". Slightly
worse, some characters may not even be encodeable in the
`default_charset` and would be replaced by question marks, which could
result in different users sharing the same OPcache.

We also refactor, and re-use existing APIs to avoid duplicated code.

show more ...


Revision tags: php-7.2.21RC1, php-7.3.8RC1
# 7556600d 15-Jul-2019 Christoph M. Becker

Fix #65547: Default value for sunrise/sunset zenith still wrong

The value of the zenith angle to calculate sunrise and sunset times is
commonly defined as 90°50', and is "obtained by add

Fix #65547: Default value for sunrise/sunset zenith still wrong

The value of the zenith angle to calculate sunrise and sunset times is
commonly defined as 90°50', and is "obtained by adding the average
apparent radius of the Sun (16') to the average amount of atmospheric
refraction at the horizon (34')", according to
http://aa.usno.navy.mil/faq/docs/RST_defs.php.

This value is also used for the Sunrise/Sunset Algorithm published in
the Almanac for Computers, 1990, see
https://web.archive.org/web/20161202180207/http://williams.best.vwh.net/sunrise_sunset_algorithm.htm.

show more ...


Revision tags: php-7.4.0alpha3, php-7.3.7, php-7.2.20, php-7.4.0alpha2, php-7.3.7RC3, php-7.3.7RC2, php-7.2.20RC2
# 0819e6dc 17-Jun-2019 Joe Watkins

simple ignore arguments in exceptions implementation


# 9f0515c4 15-Jun-2019 Erik Lundin

Add syslog.filter=raw

This passes through syslog message unchanged, without splitting
messages at newlines.


Revision tags: php-7.4.0alpha1, php-7.3.7RC1, php-7.2.20RC1, php-7.2.19, php-7.3.6, php-7.1.30, php-7.2.19RC1, php-7.3.6RC1
# eaab0a2b 01-May-2019 Kalle Sommer Nielsen

Remove some more interbase leftovers


Revision tags: php-7.1.29, php-7.2.18, php-7.3.5
# 8b8d5a4b 24-Apr-2019 George Peter Banyard

Remove html_errors from INI Quick Reference as INI values are identical to Engine values


# 825fc6b4 17-Apr-2019 Gabriel Caruso

Fix typo

Introduced via 9a85a944d8


Revision tags: php-7.2.18RC1, php-7.3.5RC1
# 9a85a944 15-Apr-2019 Nikita Popov

s/mysql_connect()/mysqli_connect() in php.ini


# 1dd5ab0c 05-Apr-2019 Peter Kokot

Add opcache.lockfile_path and opcache.lockfile_path to ini settings

Some default opcache settings were missing.


Revision tags: php-7.2.17, php-7.3.4, php-7.1.28
# bc4cb277 29-Mar-2019 Stanislav Malyshev

Add mbstring.regex_stack_limit to php.ini-*


Revision tags: php-7.3.4RC1, php-7.2.17RC1
# 78c9a53d 19-Mar-2019 Remi Collet

comment out sqlite3.defensive = 1
follow common practice, this is the default value


# ad2d2e41 18-Mar-2019 Christoph M. Becker

Fix #76956: Wrong value for 'syslog.filter' documented in php.ini


Revision tags: php-7.1.27, php-7.3.3, php-7.2.16, php-7.3.3RC1, php-7.2.16RC1, php-7.2.15, php-7.3.2, php-7.2.15RC1, php-7.3.2RC1, php-5.6.40, php-7.1.26, php-7.3.1, php-7.2.14, php-7.2.14RC1, php-7.3.1RC1
# 58c25bf6 16-Dec-2018 bohwaz

SQLite3: add DEFENSIVE config for SQLite >= 3.26.0 as a mitigation strategy against potential security flaws


# e93259bb 16-Dec-2018 bohwaz

SQLite3: add DEFENSIVE config for SQLite >= 3.26.0 as a mitigation strategy against potential security flaws


# fddc7510 28-Feb-2019 Kalle Sommer Nielsen

Removed pdo_odbc.db2_instance_name


# 92ac598a 22-Jan-2019 Peter Kokot

Remove local variables

This patch removes the so called local variables defined per
file basis for certain editors to properly show tab width, and
similar settings. These are mainly

Remove local variables

This patch removes the so called local variables defined per
file basis for certain editors to properly show tab width, and
similar settings. These are mainly used by Vim and Emacs editors
yet with recent changes the once working definitions don't work
anymore in Vim without custom plugins or additional configuration.
Neither are these settings synced across the PHP code base.

A simpler and better approach is EditorConfig and fixing code
using some code style fixing tools in the future instead.

This patch also removes the so called modelines for Vim. Modelines
allow Vim editor specifically to set some editor configuration such as
syntax highlighting, indentation style and tab width to be set in the
first line or the last 5 lines per file basis. Since the php test
files have syntax highlighting already set in most editors properly and
EditorConfig takes care of the indentation settings, this patch removes
these as well for the Vim 6.0 and newer versions.

With the removal of local variables for certain editors such as
Emacs and Vim, the footer is also probably not needed anymore when
creating extensions using ext_skel.php script.

Additionally, Vim modelines for setting php syntax and some editor
settings has been removed from some *.phpt files. All these are
mostly not relevant for phpt files neither work properly in the
middle of the file.

show more ...


# 9bc2cacf 28-Jan-2019 Nikita Popov

Remove special treatment of strings in asserts

This was deprecated in PHP 7.2 as part of
https://wiki.php.net/rfc/deprecations_php_7_2.


# 331e56ce 28-Jan-2019 Nikita Popov

Remove mbstring.func_overload

Deprecated in PHP 7.2 as part of
https://wiki.php.net/rfc/deprecations_php_7_2.


# 920b4b24 28-Jan-2019 Nikita Popov

Remove track_errors and $php_errormsg

This has been deprecated in PHP 7.2 as part of
https://wiki.php.net/rfc/deprecations_php_7_2.


12345678910