#
ce9f7b13 |
| 20-Nov-2020 |
Gabriel Caruso |
[ci-skip] Use HTTPS for links on PHP ini files
|
#
ed949a19 |
| 20-Nov-2020 |
Benjamin Morel |
Fix typos in php.ini files Closes GH-6441. [ci skip]
|
#
205556c1 |
| 28-Sep-2020 |
Giovanni Giacobbi |
Synchronize php.ini-development and php.ini-production Closes GH-6231.
|
#
e6044d44 |
| 06-Aug-2020 |
Christoph M. Becker |
Fix #55847: DOTNET .NET 4.0 GAC new location If we do not specify the exact version of the .NET framework to use, the default CLR is loaded, which is typically CLR 2, which is very old.
Fix #55847: DOTNET .NET 4.0 GAC new location If we do not specify the exact version of the .NET framework to use, the default CLR is loaded, which is typically CLR 2, which is very old. Therefore, we introduce a `PHP_INI_SYSTEM` setting, which allows users to choose the desired .NET framework version. The value of the setting are the first three parts of the framework's version number, separated by dots, and prefixed with "v", e.g. "v4.0.30319". If the value of the INI setting is `NULL` (the default) or an empty string, the default CLR is used. Internally, we switch from the most generic `CoCreateInstance()` to `CorBindToRuntime()` which is implemented in mscoree.dll. To avoid the hard dependency to that library, we load dynamically. So this fix is supposed to be fully backwards compatible. Closes GH-5949
show more ...
|
#
824541d5 |
| 12-Aug-2020 |
Nikita Popov |
Disable report_zend_debug by default We might just want to drop this completely, but at least don't enable it by default. It already gets disabled by a number of SAPIs, but we should
Disable report_zend_debug by default We might just want to drop this completely, but at least don't enable it by default. It already gets disabled by a number of SAPIs, but we should make that the default state.
show more ...
|
#
07db6415 |
| 25-Jun-2020 |
Tyson Andre |
[RFC] Make string length for getTraceAsString() configurable Add a `zend.exception_string_param_max_len` ini setting. (same suffix as `log_errors_max_len`) Allow values between
[RFC] Make string length for getTraceAsString() configurable Add a `zend.exception_string_param_max_len` ini setting. (same suffix as `log_errors_max_len`) Allow values between 0 and 1000000 bytes. For example, with zend.exception_string_param_max_len=0, "" would represent the empty string, and "..." would represent something longer than the empty string. Previously, this was hardcoded as exactly 15 bytes. Discussion: https://externals.io/message/110717 Closes GH-5769
show more ...
|
#
9250abfb |
| 22-Jul-2020 |
Nikita Popov |
php.ini cleanup [ci skip]
|
#
340e2ead |
| 11-Jul-2020 |
Christoph M. Becker |
Export php_gd_libgdimageptr_from_zval_p() Some extension may need to retrieve the `gdImagePtr` from an `GdImage` object; thus, we export the respective function. To not being forced
Export php_gd_libgdimageptr_from_zval_p() Some extension may need to retrieve the `gdImagePtr` from an `GdImage` object; thus, we export the respective function. To not being forced to include gd.h in php_gd.h, we use the opaque `struct gdImageStruct *` as return type. We also rename php_gd2.dll to php_gd.dll, since there's not really much point in giving the DLL a version number, since there is no php_gd.dll for years (if there ever has been). Renaming, on the other hand, matches the name on other systems (gd.so), and allows to actually use `ADD_EXTENSION_DEP()`.
show more ...
|
#
4fa3687e |
| 29-May-2020 |
Christoph M. Becker |
Unbundle ext/xmlrpc According to <https://wiki.php.net/rfc/unbundle_xmlprc> we unbundle ext/xmlrpc.
|
#
0a74da38 |
| 19-May-2020 |
Nikita Popov |
Add support for replaying warnings in opcache If opcache.record_warnings is enabled, opcache will record compilation warnings and replay them when the file is included again. The pri
Add support for replaying warnings in opcache If opcache.record_warnings is enabled, opcache will record compilation warnings and replay them when the file is included again. The primary use case I have in mind for this is automated testing of the opcache file cache. This resolves bug #76535.
show more ...
|
#
c00cce32 |
| 18-Mar-2020 |
Nikita Popov |
Clarify session.cookie_samesite="None"
|
#
68e2da63 |
| 15-Mar-2020 |
Jacob Dreesen |
Fix typo in php.ini comment
|
#
61e76927 |
| 10-Feb-2020 |
Michael Voříšek |
Remove value from comment in php.ini files Closes GH-5164.
|
#
038ca4bb |
| 05-Feb-2020 |
jsmmo <48855822+jsmmo@users.noreply.github.com> |
Remove hint to security purpose of disable_functions These features are not intended to offer security against a determined attacher with full local code execution privileges. C
Remove hint to security purpose of disable_functions These features are not intended to offer security against a determined attacher with full local code execution privileges. Closes GH-5150.
show more ...
|
#
b97c9dc7 |
| 31-Jan-2020 |
Pieter Hordijk |
Added opcache extension to inis Extensions are not loaded by default (commented out) Closes GH-5136
|
#
a1f2f8f0 |
| 25-Jan-2020 |
George Peter Banyard |
Fixed bug #79080 [ci skip] Rewrote session.gc_probability and session.gc_divisor INI setting description to be more succint.
|
#
4d24f5a4 |
| 14-Jan-2020 |
aand18 <36073609+aand18@users.noreply.github.com> |
Update php.ini files to add missing FTP extension FTP functionality isn't enabled by default and not listed as a disabled extension in the `php.ini` file either. This should spa
Update php.ini files to add missing FTP extension FTP functionality isn't enabled by default and not listed as a disabled extension in the `php.ini` file either. This should spare a few googles to anyone needing FTP functionality in PHP. Closes GH-5084.
show more ...
|
Revision tags: php-7.3.13RC1, php-7.2.26RC1, php-7.4.0, php-7.2.25, php-7.3.12, php-7.4.0RC6, php-7.3.12RC1, php-7.2.25RC1, php-7.4.0RC5 |
|
#
69b608cf |
| 24-Oct-2019 |
Remi Collet |
typo and better wording
|
#
fea8c548 |
| 23-Oct-2019 |
Dmitry Stogov |
Added suppot for glob() wildcard matching in ffi.preload directive
|
#
dcd77232 |
| 23-Oct-2019 |
Remi Collet |
add new ffi.preload option in php.ini and display ini entries in MINFO
|
Revision tags: php-7.1.33, php-7.2.24, php-7.3.11 |
|
#
38f388fb |
| 19-Oct-2019 |
Tyson Andre |
Fix miscellaneous typos in docs
|
Revision tags: php-7.4.0RC4, php-7.3.11RC1, php-7.2.24RC1 |
|
#
6623e7ac |
| 02-Oct-2019 |
Nikita Popov |
Add support for mbstring.regex_retry_limit This is very similar to the existing mbstring.regex_stack_limit, but for backtracking. The default value matches pcre.backtrack_limit. Only
Add support for mbstring.regex_retry_limit This is very similar to the existing mbstring.regex_stack_limit, but for backtracking. The default value matches pcre.backtrack_limit. Only used on libonig >= 2.8.0.
show more ...
|
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
|