summaryrefslogtreecommitdiff
path: root/php.ini-development
Commit message (Collapse)AuthorAgeFilesLines
* Fix #80329: Add option to specify LOAD DATA LOCAL white list folderDarek Slusarczyk2021-02-231-0/+4
| | | | | | | | | | | | | | | | | * allow the user to specify a folder where files that can be sent via LOAD DATA LOCAL can exist * add mysqli.local_infile_directory for mysqli (ignored if mysqli.allow_local_infile is enabled) * add PDO::MYSQL_ATTR_LOCAL_INFILE_DIRECTORY for pdo_mysql (ignored if PDO::MYSQL_ATTR_LOCAL_INFILE is enabled) * add related tests * fixes for building with libmysql 8.x * small improvement in existing tests * update php.ini-[development|production] files Closes GH-6448. Co-authored-by: Nikita Popov <nikic@php.net>
* Merge branch 'PHP-8.0'Christoph M. Becker2020-12-141-0/+1
|\ | | | | | | | | * PHP-8.0: Add Windows support for OCI 19
| * Add Windows support for OCI 19Christoph M. Becker2020-12-141-0/+1
| | | | | | | | As requested by Christopher Jones.
* | [ci-skip] Use HTTPS for links on PHP ini filesGabriel Caruso2020-11-231-189/+189
|/
* Merge branch 'PHP-7.4' into PHP-8.0Nikita Popov2020-11-201-1/+1
|\ | | | | | | | | * PHP-7.4: Fix typos in php.ini files
| * Fix typos in php.ini filesBenjamin Morel2020-11-201-1/+1
| | | | | | | | | | | | Closes GH-6441. [ci skip]
* | Merge branch 'PHP-7.4'Nikita Popov2020-09-291-0/+2
|\ \ | |/ | | | | | | * PHP-7.4: Synchronize php.ini-development and php.ini-production
| * Synchronize php.ini-development and php.ini-productionGiovanni Giacobbi2020-09-291-4/+6
| | | | | | | | Closes GH-6231.
* | Fix #55847: DOTNET .NET 4.0 GAC new locationChristoph M. Becker2020-08-221-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* | Disable report_zend_debug by defaultNikita Popov2020-08-121-1/+1
| | | | | | | | | | | | 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.
* | [RFC] Make string length for getTraceAsString() configurableTyson Andre2020-07-251-0/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* | php.ini cleanupNikita Popov2020-07-221-9/+12
| | | | | | | | [ci skip]
* | Export php_gd_libgdimageptr_from_zval_p()Christoph M. Becker2020-07-111-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | 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()`.
* | Unbundle ext/xmlrpcChristoph M. Becker2020-05-291-1/+0
| | | | | | | | | | According to <https://wiki.php.net/rfc/unbundle_xmlprc> we unbundle ext/xmlrpc.
* | Add support for replaying warnings in opcacheNikita Popov2020-05-201-0/+5
| | | | | | | | | | | | | | | | | | 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.
* | Merge branch 'PHP-7.4'Nikita Popov2020-03-181-1/+2
|\ \ | |/ | | | | | | * PHP-7.4: Clarify session.cookie_samesite="None"
| * Merge branch 'PHP-7.3' into PHP-7.4Nikita Popov2020-03-181-1/+2
| |\ | | | | | | | | | | | | * PHP-7.3: Clarify session.cookie_samesite="None"
| | * Clarify session.cookie_samesite="None"Nikita Popov2020-03-181-1/+2
| | |
* | | Merge branch 'PHP-7.4'Christoph M. Becker2020-03-151-2/+2
|\ \ \ | |/ / | | | | | | | | | * PHP-7.4: Fix typo in php.ini comment
| * | Merge branch 'PHP-7.3' into PHP-7.4Christoph M. Becker2020-03-151-2/+2
| |\ \ | | |/ | | | | | | | | | * PHP-7.3: Fix typo in php.ini comment
| | * Fix typo in php.ini commentJacob Dreesen2020-03-151-2/+2
| | |
* | | Merge branch 'PHP-7.4'Nikita Popov2020-02-121-1/+1
|\ \ \ | |/ / | | | | | | | | | * PHP-7.4: Remove value from comment in php.ini files
| * | Remove value from comment in php.ini filesMichael Voříšek2020-02-121-1/+1
| | | | | | | | | | | | Closes GH-5164.
* | | Merge branch 'PHP-7.4'Nikita Popov2020-02-101-2/+2
|\ \ \ | |/ / | | | | | | | | | * PHP-7.4: Remove hint to security purpose of disable_functions
| * | Remove hint to security purpose of disable_functionsjsmmo2020-02-101-2/+2
| | | | | | | | | | | | | | | | | | | | | These features are not intended to offer security against a determined attacher with full local code execution privileges. Closes GH-5150.
* | | Added opcache extension to inisPieter Hordijk2020-02-011-0/+2
| | | | | | | | | | | | | | | | | | Extensions are not loaded by default (commented out) Closes GH-5136
* | | Merge branch 'PHP-7.4'George Peter Banyard2020-01-251-13/+6
|\ \ \ | |/ / | | | | | | | | | * PHP-7.4: Fixed bug #79080 [ci skip]
| * | Merge branch 'PHP-7.3' into PHP-7.4George Peter Banyard2020-01-251-13/+6
| |\ \ | | |/ | | | | | | | | | * PHP-7.3: Fixed bug #79080 [ci skip]
| | * Fixed bug #79080 [ci skip]George Peter Banyard2020-01-251-13/+6
| | | | | | | | | | | | | | | Rewrote session.gc_probability and session.gc_divisor INI setting description to be more succint.
* | | Merge branch 'PHP-7.4'Nikita Popov2020-01-171-0/+1
|\ \ \ | |/ / | | | | | | | | | * PHP-7.4: Update php.ini files to add missing FTP extension
| * | Update php.ini files to add missing FTP extensionaand182020-01-171-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* | | Merge branch 'PHP-7.4'Remi Collet2019-10-241-1/+1
|\ \ \ | |/ / | | | | | | | | | * PHP-7.4: typo and better wording
| * | typo and better wordingRemi Collet2019-10-241-1/+1
| | |
* | | Merge branch 'PHP-7.4'Remi Collet2019-10-241-1/+1
|\ \ \ | |/ / | | | | | | | | | | | | | | | * PHP-7.4: Added suppot for glob() wildcard matching in ffi.preload directive Reverting push to wrong repo Update alloc patch
| * | Added suppot for glob() wildcard matching in ffi.preload directiveDmitry Stogov2019-10-241-1/+1
| | |
* | | Merge branch 'PHP-7.4'Remi Collet2019-10-231-0/+3
|\ \ \ | |/ / | | | | | | | | | * PHP-7.4: add new ffi.preload option in php.ini and display ini entries in MINFO
| * | add new ffi.preload option in php.ini and display ini entries in MINFORemi Collet2019-10-231-0/+3
| | |
* | | Merge branch 'PHP-7.4'Christoph M. Becker2019-10-191-1/+1
|\ \ \ | |/ / | | | | | | | | | * PHP-7.4: Fix miscellaneous typos in docs
| * | Fix miscellaneous typos in docsTyson Andre2019-10-191-1/+1
| | |
* | | Merge branch 'PHP-7.4'Nikita Popov2019-10-061-0/+5
|\ \ \ | |/ /
| * | Add support for mbstring.regex_retry_limitNikita Popov2019-10-061-0/+5
| | | | | | | | | | | | | | | | | | 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.
* | | Merge branch 'PHP-7.4'Nikita Popov2019-09-301-0/+7
|\ \ \ | |/ /
| * | Add max_depth option to unserialize()Nikita Popov2019-09-301-0/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* | | Enable display_startup_errors by defaultNikita Popov2019-09-061-6/+4
| | |
* | | Merge branch 'PHP-7.4'Christoph M. Becker2019-09-031-0/+5
|\ \ \ | |/ / | | | | | | | | | * PHP-7.4: Document opcache.preload_user directive
| * | Document opcache.preload_user directiveChristoph M. Becker2019-09-031-0/+5
| | |
* | | Make error_reporting=E_ALL the defaultNikita Popov2019-09-021-2/+2
| | |
* | | Merge branch 'PHP-7.4'Christoph M. Becker2019-08-271-0/+1
|\ \ \ | |/ / | | | | | | | | | * PHP-7.4: add ffi to php.ini extension [ci skip]
| * | add ffi to php.ini extension [ci skip]Pavel Dyakonov2019-08-271-0/+1
| | |
* | | Merge branch 'PHP-7.4'Christoph M. Becker2019-07-171-0/+4
|\ \ \ | |/ / | | | | | | | | | * PHP-7.4: Allow multiple cache instances per user/host on Windows