summaryrefslogtreecommitdiff
path: root/php.ini-development
Commit message (Collapse)AuthorAgeFilesLines
...
| * | 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
| | |
* | | Merge branch 'PHP-7.4'Peter Kokot2019-04-051-1/+9
|\ \ \ | |/ / | | | | | | | | | * PHP-7.4: Add opcache.lockfile_path and opcache.lockfile_path to ini settings
| * | Add opcache.lockfile_path and opcache.lockfile_path to ini settingsPeter Kokot2019-04-051-1/+9
| | | | | | | | | | | | Some default opcache settings were missing.
* | | Merge branch 'PHP-7.4'Stanislav Malyshev2019-04-011-0/+5
|\ \ \ | |/ / | | | | | | | | | | | | | | | | | | | | | * PHP-7.4: Unfortunately, travis CI has old oniguruma library Update NEWS & UPGRADING Add fallbacks for older oniguruma versions Add mbstring.regex_stack_limit to php.ini-* Implement RF bug #72777 - ensure stack limits on mbstring functions.
| * | Merge branch 'PHP-7.3' into PHP-7.4Stanislav Malyshev2019-04-011-0/+5
| |\ \ | | |/ | | | | | | | | | | | | | | | | | | * PHP-7.3: Update NEWS & UPGRADING Add fallbacks for older oniguruma versions Add mbstring.regex_stack_limit to php.ini-* Implement RF bug #72777 - ensure stack limits on mbstring functions.
| | * Add mbstring.regex_stack_limit to php.ini-*Stanislav Malyshev2019-03-281-0/+5
| | |
* | | Merge branch 'PHP-7.4'Remi Collet2019-03-191-1/+1
|\ \ \ | |/ / | | | | | | | | | * PHP-7.4: comment out sqlite3.defensive = 1 follow common practice, this is the default value
| * | Merge branch 'PHP-7.3' into PHP-7.4Remi Collet2019-03-191-1/+1
| |\ \ | | |/ | | | | | | | | | * PHP-7.3: comment out sqlite3.defensive = 1 follow common practice, this is the default value
| | * Merge branch 'PHP-7.2' into PHP-7.3Remi Collet2019-03-191-1/+1
| | |\ | | | | | | | | | | | | | | | | * PHP-7.2: comment out sqlite3.defensive = 1 follow common practice, this is the default value
| | | * comment out sqlite3.defensive = 1Remi Collet2019-03-191-1/+1
| | | | | | | | | | | | | | | | follow common practice, this is the default value
* | | | Merge branch 'PHP-7.4'Christoph M. Becker2019-03-181-2/+3
|\ \ \ \ | |/ / / | | | | | | | | | | | | * PHP-7.4: Fix #76956: Wrong value for 'syslog.filter' documented in php.ini
| * | | Merge branch 'PHP-7.3' into PHP-7.4Christoph M. Becker2019-03-181-2/+3
| |\ \ \ | | |/ / | | | | | | | | | | | | * PHP-7.3: Fix #76956: Wrong value for 'syslog.filter' documented in php.ini
| | * | Fix #76956: Wrong value for 'syslog.filter' documented in php.iniChristoph M. Becker2019-03-181-2/+3
| | | |
* | | | Merge branch 'PHP-7.4'Christoph M. Becker2019-03-111-0/+11
|\ \ \ \ | |/ / / | | | | | | | | | | | | * PHP-7.4: SQLite3: add DEFENSIVE config for SQLite >= 3.26.0 as a mitigation strategy against potential security flaws
| * | | Merge branch 'PHP-7.3' into PHP-7.4Christoph M. Becker2019-03-111-0/+11
| |\ \ \ | | |/ / | | | | | | | | | | | | * PHP-7.3: SQLite3: add DEFENSIVE config for SQLite >= 3.26.0 as a mitigation strategy against potential security flaws
| | * | Merge branch 'PHP-7.2' into PHP-7.3Christoph M. Becker2019-03-111-0/+11
| | |\ \ | | | |/ | | | | | | | | | | | | * PHP-7.2: SQLite3: add DEFENSIVE config for SQLite >= 3.26.0 as a mitigation strategy against potential security flaws
| | | * SQLite3: add DEFENSIVE config for SQLite >= 3.26.0 as a mitigation strategy ↵bohwaz2019-03-111-0/+11
| | | | | | | | | | | | | | | | against potential security flaws
* | | | Removed pdo_odbc.db2_instance_nameKalle Sommer Nielsen2019-03-011-2/+0
| | | |
* | | | Merge branch 'PHP-7.4'Peter Kokot2019-02-031-4/+0
|\ \ \ \ | |/ / / | | | | | | | | | | | | * PHP-7.4: Remove local variables
| * | | Remove local variablesPeter Kokot2019-02-031-4/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* | | | Remove special treatment of strings in assertsNikita Popov2019-01-291-5/+0
| | | | | | | | | | | | | | | | | | | | This was deprecated in PHP 7.2 as part of https://wiki.php.net/rfc/deprecations_php_7_2.
* | | | Remove mbstring.func_overloadNikita Popov2019-01-281-11/+0
| | | | | | | | | | | | | | | | | | | | Deprecated in PHP 7.2 as part of https://wiki.php.net/rfc/deprecations_php_7_2.
* | | | Remove track_errors and $php_errormsgNikita Popov2019-01-281-8/+0
|/ / / | | | | | | | | | | | | This has been deprecated in PHP 7.2 as part of https://wiki.php.net/rfc/deprecations_php_7_2.
* | | [ci skip] Add opcache.preload directiveChristoph M. Becker2019-01-211-0/+5
| | |
* | | Merge branch 'PHP-7.3'Nikita Popov2019-01-141-0/+2
|\ \ \ | |/ / | | | | | | [ci skip]
| * | Merge branch 'PHP-7.2' into PHP-7.3Nikita Popov2019-01-141-0/+2
| |\ \ | | |/ | | | | | | [ci skip]
| | * document open_basedir and realpath cache coupling in php.iniwbob2019-01-141-0/+2
| | | | | | | | | | | | [ci skip]
* | | Added FFI extensionDmitry Stogov2019-01-141-0/+7
| | |
* | | Merge branch 'PHP-7.3'Remi Collet2018-12-081-0/+7
|\ \ \ | |/ / | | | | | | | | | * PHP-7.3: add imap.enable_insecure_rsh in php.ini
| * | Merge branch 'PHP-7.2' into PHP-7.3Remi Collet2018-12-081-0/+7
| |\ \ | | |/ | | | | | | | | | * PHP-7.2: add imap.enable_insecure_rsh in php.ini
| | * Merge branch 'PHP-7.1' into PHP-7.2Remi Collet2018-12-081-0/+7
| | |\ | | | | | | | | | | | | | | | | * PHP-7.1: add imap.enable_insecure_rsh in php.ini
| | | * add imap.enable_insecure_rsh in php.iniRemi Collet2018-12-081-0/+7
| | | |
| | * | Trim trailing whitespace in source code filesPeter Kokot2018-10-131-1/+1
| | | |
| * | | Trim trailing whitespace in source code filesPeter Kokot2018-10-131-2/+2
| | | |
* | | | Trim trailing whitespace in source code filesPeter Kokot2018-10-131-2/+2
| | | |
* | | | Update grammar and clarify wording in couple placesTiffany2018-09-031-2/+2
|/ / / | | | | | | | | | | | | On line 512, I clarified the sentence which uses effect, previously the sentence was awkward. On line 656, the wrong word is used, I changed affect to effect.
* | | implement same site cookie see https://bugs.php.net/bug.php?id=72230 see ↵Frederik Bosch2018-07-311-0/+5
| | | | | | | | | | | | https://tools.ietf.org/html/draft-west-first-party-cookies-07 see https://scotthelme.co.uk/csrf-is-dead/
* | | Rename none syslog.filter to all and update ini descriptionJakub Zelenka2018-07-221-8/+10
| | |