summaryrefslogtreecommitdiff
path: root/sapi/cli
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'PHP-7.1' into PHP-7.2Nikita Popov2018-01-121-14/+16
|\
| * Revert "Fixed bug #75287 (Builtin webserver crash after chdir in a shutdown ↵Nikita Popov2018-01-121-14/+16
| | | | | | | | | | | | | | | | | | function)" This reverts commit 816758eda2bcdd69ba505fb6bbb79124a7bf2254. After this commit relative router scripts were resolved against docroot rather than shell cwd.
* | Merge branch 'PHP-7.1' into PHP-7.2Xinchen Hui2018-01-031-2/+2
|\ \ | |/ | | | | | | * PHP-7.1: Happy new year (Update copyright to 2018)
| * Happy new year (Update copyright to 2018)Lior Kaplan2018-01-021-2/+2
| |
| * year++Xinchen Hui2018-01-029-10/+10
| |
* | year++Xinchen Hui2018-01-029-10/+10
| |
* | Merge branch 'PHP-7.1' into PHP-7.2Nikita Popov2017-12-161-10/+11
|\ \ | |/
| * Move includes in ps_title.cDavid Carlier2017-12-161-10/+11
| | | | | | | | | | | | The HAVE_UNISTD_H check has to be after including config.h. Also include sys/types.h, which may be needed for setproctitle.
* | Merge branch 'PHP-7.1' into PHP-7.2Anatol Belski2017-11-281-0/+20
|\ \ | |/ | | | | | | * PHP-7.1: Fixed bug #73830 Directory does not exist.
| * Fixed bug #73830 Directory does not exist.Anatol Belski2017-11-281-0/+20
| |
| * Merge branch 'PHP-7.0' into PHP-7.1Anatol Belski2017-11-143-73/+79
| |\ | | | | | | | | | | | | | | | * PHP-7.0: Update NEWS Fix bug 60471 by correctly identifying unused speculative preconnections
| | * Fix bug 60471 by correctly identifying unused speculative preconnectionsSammy Kaye Powers2017-11-143-73/+79
| | | | | | | | | | | | | | | | | | | | | | | | | | | * Correctly identify unused speculative preconnections from browsers like Chrome and Firefox * Add a new message to the debug level that is emitted when a TCP connection is closed without sending any request (a preconnection) * Fix an issue where the existing debug messages were not being displayed even when debug mode was enabled
* | | Merge branch 'PHP-7.1' into PHP-7.2Xinchen Hui2017-10-151-16/+14
|\ \ \ | |/ / | | | | | | | | | | | | * PHP-7.1: Update NEWS Fixed bug #75287 (Builtin webserver crash after chdir in a shutdown function)
| * | Merge branch 'PHP-7.0' into PHP-7.1Xinchen Hui2017-10-151-16/+14
| |\ \ | | |/ | | | | | | | | | * PHP-7.0: Fixed bug #75287 (Builtin webserver crash after chdir in a shutdown function)
| | * Fixed bug #75287 (Builtin webserver crash after chdir in a shutdown function)Xinchen Hui2017-10-151-16/+14
| | |
* | | Merge branch 'PHP-7.1' into PHP-7.2Anatol Belski2017-09-181-13/+1
|\ \ \ | |/ / | | | | | | | | | * PHP-7.1: Fix the version check causing the test fail
| * | Merge branch 'PHP-7.0' into PHP-7.1Anatol Belski2017-09-181-13/+1
| |\ \ | | |/ | | | | | | | | | * PHP-7.0: Fix the version check causing the test fail
| | * Fix the version check causing the test failAnatol Belski2017-09-181-13/+1
| | |
* | | Merge branch 'PHP-7.1' into PHP-7.2Nikita Popov2017-09-051-0/+3
|\ \ \ | |/ /
| * | Merge branch 'PHP-7.0' into PHP-7.1Nikita Popov2017-09-051-0/+3
| |\ \ | | |/
| | * Add missing null terminationNikita Popov2017-09-051-0/+3
| | |
* | | Merge branch 'PHP-7.1' into PHP-7.2Nikita Popov2017-09-053-27/+118
|\ \ \ | |/ /
| * | Merge branch 'PHP-7.0' into PHP-7.1Nikita Popov2017-09-053-28/+119
| |\ \ | | |/
| | * Fixed bug #70470Bouke van der Bijl2017-09-053-28/+119
| | |
* | | Rework automatic interactive cli activationAnatol Belski2017-08-031-4/+14
| | | | | | | | | | | | | | | There are still systems delivering buggy console info. If a file was passed, obviously no interaction is meant.
* | | Merge branch 'PHP-7.1' into PHP-7.2Joe Watkins2017-07-241-2/+2
|\ \ \ | |/ / | | | | | | | | | * PHP-7.1: Update copyright year to 2017
| * | Merge branch 'PHP-7.0' into PHP-7.1Joe Watkins2017-07-241-2/+2
| |\ \ | | |/ | | | | | | | | | * PHP-7.0: Update copyright year to 2017
| | * Update copyright year to 2017Peter Kokot2017-07-241-2/+2
| | |
* | | Fixed bug #74849 Process is started as interactive shell in PhpStormAnatol Belski2017-07-031-2/+1
| | |
* | | Fixed php_socket_t to int conversionRichard Fussenegger2017-06-151-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This warning was about a possible loss of data due to the downcast of `php_socket_t` to `int`. The former maps to a platform specific type, hence, it might downcast from a 64 bit integer to a 32 bit intger. Fixed possibly overflowing vars Due to the change from `int` to `php_socket_t` some variables might overflow now. Changed all variables that might be affected. Revert "Fixed possibly overflowing vars" This reverts commit bf64fd5984409a208ef32108990a6085b6556273. Use aliased PHP socket type Using the alias protects us from changes to the underlying type. Removed ignored nfds argument The `nfds` argument to the Win32 `select` function is always ignored, regardless of its actual value. Hence, we should not pass it in the first place. See https://msdn.microsoft.com/en-us/library/windows/desktop/ms740141(v=vs.85).aspx for reference. Target value is not a pointer Avoid overflow in loop
* | | Merge branch 'PHP-7.1'Xinchen Hui2017-06-121-0/+46
|\ \ \ | |/ / | | | | | | | | | | | | * PHP-7.1: Add simple cli test for PATH/HOST ini sections Fixed bug #74600
| * | Merge branch 'PHP-7.0' into PHP-7.1Xinchen Hui2017-06-121-0/+46
| |\ \ | | |/ | | | | | | | | | | | | * PHP-7.0: Add simple cli test for PATH/HOST ini sections Fixed bug #74600
| | * Add simple cli test for PATH/HOST ini sectionsManuel Mausz2017-06-091-0/+46
| | |
* | | missing fix for another testRemi Collet2017-05-291-1/+2
| | |
* | | extend conditionAnatol Belski2017-05-271-1/+1
| | |
* | | Turn interactive mode on, if cli binary is clicked in filemanagerAnatol Belski2017-05-251-0/+5
| | |
* | | Merge branch 'PHP-7.1'Xinchen Hui2017-05-171-0/+4
|\ \ \ | |/ / | | | | | | | | | * PHP-7.1: Added cleanup
| * | Merge branch 'PHP-7.0' into PHP-7.1Xinchen Hui2017-05-171-0/+4
| |\ \ | | |/ | | | | | | | | | * PHP-7.0: Added cleanup
| | * Added cleanupXinchen Hui2017-05-171-0/+4
| | |
* | | Merge branch 'PHP-7.1'Xinchen Hui2017-05-171-0/+34
|\ \ \ | |/ / | | | | | | | | | * PHP-7.1: Added test for bug #74600
| * | Merge branch 'PHP-7.0' into PHP-7.1Xinchen Hui2017-05-171-0/+34
| |\ \ | | |/ | | | | | | | | | * PHP-7.0: Added test for bug #74600
| | * Added test for bug #74600Xinchen Hui2017-05-171-0/+34
| | |
* | | Fix bug 60471 by correctly identifying unused speculative preconnectionsSammy Kaye Powers2017-04-113-74/+80
| | | | | | | | | | | | | | | | | | | | | | | | | | | * Correctly identify unused speculative preconnections from browsers like Chrome and Firefox * Add a new message to the debug level that is emitted when a TCP connection is closed without sending any request (a preconnection) * Fix an issue where the existing debug messages were not being displayed even when debug mode was enabled
* | | Merge branch 'PHP-7.1'Anatol Belski2017-04-031-2/+1
|\ \ \ | |/ / | | | | | | | | | * PHP-7.1: fix buffer overflow
| * | fix buffer overflowAnatol Belski2017-04-031-2/+1
| | |
* | | Change 'undefined constant' from E_NOTICE to E_WARNING and mention deprecationRowan Collins2017-03-231-1/+1
| | | | | | | | | | | | | | | Implements RFC "Deprecate and Remove Bareword (Unquoted) Strings" [https://wiki.php.net/rfc/deprecate-bareword-strings]
* | | Remove more unnecessary checks on Zend's allocator functionsThomas Punt2017-03-161-35/+2
| | |
* | | Merge branch 'PHP-7.1'Joe Watkins2017-01-181-1/+1
|\ \ \ | |/ / | | | | | | | | | * PHP-7.1: Remove remnants of TSMRLS_* macro calls
| * | Merge branch 'PHP-7.0' into PHP-7.1Joe Watkins2017-01-181-1/+1
| |\ \ | | |/ | | | | | | | | | * PHP-7.0: Remove remnants of TSMRLS_* macro calls
| | * Remove remnants of TSMRLS_* macro callsThomas Punt2017-01-181-1/+1
| | |