summaryrefslogtreecommitdiff
path: root/php.ini-development
Commit message (Collapse)AuthorAgeFilesLines
* 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
| * | Allow multiple cache instances per user/host on WindowsChristoph M. Becker2019-07-171-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* | | Fix #65547: Default value for sunrise/sunset zenith still wrongChristoph M. Becker2019-07-151-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* | | Merge branch 'PHP-7.4'Joe Watkins2019-07-021-0/+4
|\ \ \ | |/ / | | | | | | | | | * PHP-7.4: simple ignore arguments in exceptions implementation
| * | simple ignore arguments in exceptions implementationJoe Watkins2019-07-021-0/+6
| | |
* | | Merge branch 'PHP-7.4'Nikita Popov2019-06-171-0/+1
|\ \ \ | |/ /
| * | Merge branch 'PHP-7.3' into PHP-7.4Nikita Popov2019-06-171-0/+1
| |\ \ | | |/
| | * Add syslog.filter=rawErik Lundin2019-06-171-0/+1
| | | | | | | | | | | | | | | This passes through syslog message unchanged, without splitting messages at newlines.
* | | Merge branch 'PHP-7.4'Kalle Sommer Nielsen2019-05-011-32/+0
|\ \ \ | |/ / | | | | | | | | | | | | | | | * PHP-7.4: Remove some more interbase leftovers Fix typo NEWS for ext/interbase unbundling
| * | Remove some more interbase leftoversKalle Sommer Nielsen2019-05-011-32/+0
| | |
* | | Merge branch 'PHP-7.4'Christoph M. Becker2019-04-241-9/+1
|\ \ \ | |/ / | | | | | | | | | * PHP-7.4: Remove html_errors from INI Quick Reference as INI values are identical to Engine values
| * | Remove html_errors from INI Quick Reference as INI values are identical to ↵George Peter Banyard2019-04-241-9/+1
| | | | | | | | | | | | Engine values
* | | Merge branch 'PHP-7.4'Nikita Popov2019-04-161-2/+2
|\ \ \ | |/ /
| * | s/mysql_connect()/mysqli_connect() in php.iniNikita Popov2019-04-161-2/+2
| | |