summaryrefslogtreecommitdiff
path: root/sapi/cli
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'PHP-5.4' into PHP-5.5Stanislav Malyshev2015-08-041-2/+2
|\ | | | | | | | | * PHP-5.4: fix test
| * fix testStanislav Malyshev2015-08-041-2/+2
| |
* | Merge branch 'PHP-5.4' into PHP-5.5Stanislav Malyshev2015-08-041-4/+7
|\ \ | |/ | | | | | | | | * PHP-5.4: fix test update NEWS
| * fix testStanislav Malyshev2015-08-041-4/+7
| |
* | Fixed bug #67741 (auto_prepend_file messes up __LINE__)Reeze Xia2015-03-032-0/+20
| | | | | | | | This also fixes bug #54081
* | Bump yearXinchen Hui2015-01-158-9/+9
| |
* | Fix bug #68784Rasmus Lerdorf2015-01-091-1/+1
| |
* | Handle NULL strings in sapi_cli_server_register_variable().Adam Harvey2015-01-062-0/+39
| | | | | | | | Fixes bug #68745 (Invalid HTTP requests make web server segfault).
* | Allow CLI server test scripts to specify the name of the router file.Adam Harvey2015-01-066-10/+9
| | | | | | | | | | This is required to write tests that behave differently when an index.php isn't present in the document root. (Such as the one I'm about to commit.)
* | Fix php cli (-S option) inconsistent port parsingnil0x422014-11-301-2/+2
| | | | | | | | | | | | Add port range verification of listening port with -S option for the php cli. This fixes inconsistent listening port due to unverified cast from long to short with htons(3).
* | fix test with readline on macFerenc Kovacs2014-11-291-5/+5
| |
* | Merge branch 'PHP-5.4' into PHP-5.5Johannes Schlüter2014-09-271-2/+0
|\ \ | |/
| * This test should passJohannes Schlüter2014-09-271-2/+0
| |
* | Fix bug #67878 program_prefix not honoured in man pagesRemi Collet2014-08-211-18/+18
| | | | | | | | | | | | - add @program_prefix@ in php, phpize and php-config man pages - set date to 2014 - fix "SEE ALSO" alignment
* | Fix #67594 - invisible colon should be stripped off header nameTjerk Meesters2014-07-121-4/+8
| |
* | Merge branch 'PHP-5.4' into PHP-5.5Adam Harvey2014-07-072-4/+46
|\ \ | |/ | | | | | | * PHP-5.4: Fixed bug #66830 (Empty header causes PHP built-in web server to hang).
| * Fixed bug #66830 (Empty header causes PHP built-in web server to hang).Adam Harvey2014-07-072-4/+46
| | | | | | | | | | | | | | | | We had an infinite loop in sapi_cli_server_send_headers(): while iterating over the linked list of headers, when an empty header was hit, continue would go to the next iteration of the loop without updating h to be the next value in the linked list. Updating it to always increment regardless of whether the header is actually valid or not fixes the issue.
* | Merge branch 'PHP-5.4' into PHP-5.5Lior Kaplan2014-06-181-1/+1
|\ \ | |/ | | | | | | | | * PHP-5.4: Update copyright year to 2014 Update copyright year to 2014
| * Update copyright year to 2014Lior Kaplan2014-06-171-1/+1
| |
* | Merge branch 'PHP-5.4' into PHP-5.5Adam Harvey2014-06-122-0/+51
|\ \ | |/ | | | | | | * PHP-5.4: Add 308 and 426 to the HTTP response code map in the CLI server.
| * Add 308 and 426 to the HTTP response code map in the CLI server.Adam Harvey2014-06-122-0/+51
| | | | | | | | Implements FR #67429 (CLI server is missing some new HTTP response codes).
* | Merge branch 'PHP-5.4' into PHP-5.5Remi Collet2014-06-101-3/+3
|\ \ | |/ | | | | | | | | * PHP-5.4: NEWS Fixed bug #67406 built-in web-server segfaults on startup
| * Fixed bug #67406 built-in web-server segfaults on startupRemi Collet2014-06-101-3/+3
| | | | | | | | | | | | | | | | Reproduce on aarch64. From select man page: "select() may update the timeout argument to indicate how much time was left." So "const" is not ok.
* | Fixed bug #67079 Missing MIME types for XML/XSL filesAnatol Belski2014-04-161-0/+3
| |
* | Merge branch 'PHP-5.4' into PHP-5.5Remi Collet2014-02-281-10/+1
|\ \ | |/ | | | | | | | | * PHP-5.4: man page: long option name is --strip, not --stripped --global have be removed in 5.2
| * man page: long option name is --strip, not --strippedRemi Collet2014-02-281-1/+1
| |
| * --global have be removed in 5.2Remi Collet2014-02-281-9/+0
| |
| * Bump yearXinchen Hui2014-01-034-5/+5
| |
* | Bump yearXinchen Hui2014-01-038-9/+9
| |
* | Fixed a wrong testJulien Pauli2013-11-261-1/+1
| |
* | Merge branch 'CLIGetAllHeadersBackport' into PHP-5.5Andrea Faulds2013-11-182-0/+147
|\ \ | | | | | | | | | | | | | | | | | | * CLIGetAllHeadersBackport: Removed UPGRADING note Rewrote test using tcp instead of http:// stream Implemented FR #65917 (getallheaders() is not supported by the built-in...)
| * | Rewrote test using tcp instead of http:// streamAndrea Faulds2013-11-121-17/+39
| | |
| * | Implemented FR #65917 (getallheaders() is not supported by the built-in...)Andrea Faulds2013-11-122-0/+125
| | | | | | | | | | | | | | | | | | | | | | | | | | | - Implemented apache_request_headers() and getallheaders() alias in CLI server - Implemented apache_response_headers() in CLI server using FastCGI code Conflicts: NEWS UPGRADING
* | | This is CLI web server change. Added some common MIME types to theChristopher Jones2013-11-151-0/+36
|/ / | | | | | | | | | | | | | | existing lookup list, pending a more thorough lookup solution, if anyone wants to do that. Ref http://news.php.net/php.internals/69990 A router can be used to add to, or override, the MIME type lookups, see http://php.net/manual/en/features.commandline.webserver.php
* | Merge branch 'PHP-5.4' into PHP-5.5Felipe Pena2013-10-051-0/+1
|\ \ | |/ | | | | | | | | * PHP-5.4: - Fixed bug #65818 (Segfault with built-in webserver and chunked transfer encoding) - BFN
| * - Fixed bug #65818 (Segfault with built-in webserver and chunked transfer ↵Felipe Pena2013-10-051-0/+1
| | | | | | | | encoding)
* | Fixed bug #65678 the test cli_process_title_windows will fails on particular ↵Anatol Belski2013-09-201-3/+4
| | | | | | | | | | | | environnement Patch by Pierre Renaudet
* | Added application/pdf to PHP CLI Web Server mime types.Christopher Jones2013-09-191-0/+1
| |
* | Merge branch 'PHP-5.4' into PHP-5.5Adam Harvey2013-09-092-10/+55
|\ \ | |/ | | | | | | | | | | | | | | | | * PHP-5.4: Handle CLI server request headers case insensitively. 5.4.21 now Conflicts: configure.in main/php_version.h
| * Handle CLI server request headers case insensitively.Adam Harvey2013-09-092-10/+55
| | | | | | | | Fixes bug #65633 (built-in server treat some http headers as case-sensitive).
* | Merge branch 'PHP-5.4' into PHP-5.5Christopher Jones2013-08-141-1/+1
|\ \ | |/ | | | | | | | | | | | | * PHP-5.4: Reduce (some) compile noise of 'unused variable' and 'may be used uninitialized' warnings. Conflicts: ext/dba/libinifile/inifile.c
| * Reduce (some) compile noise of 'unused variable' and 'may be used ↵Christopher Jones2013-08-141-1/+1
| | | | | | | | uninitialized' warnings.
* | Merge branch 'PHP-5.4' into PHP-5.5Stanislav Malyshev2013-07-142-12/+13
|\ \ | |/ | | | | | | | | | | | | * PHP-5.4: Add built-in web server to invocation list Terminology: change embedded web server to built-in web server to align with cli usage Align -B and -E parameter names with cli usage (begin_code and end_code) Fix Bug #65219 DBSETLDBNAME should be called before login to set DBNAME in login record
| * Add built-in web server to invocation listLior Kaplan2013-07-141-1/+2
| |
| * Terminology: change embedded web server to built-in web server to align with ↵Lior Kaplan2013-07-141-3/+3
| | | | | | | | cli usage
| * Align -B and -E parameter names with cli usage (begin_code and end_code)Lior Kaplan2013-07-141-8/+8
| |
* | Merge branch 'PHP-5.4' into PHP-5.5Remi Collet2013-07-021-1/+1
|\ \ | |/ | | | | | | * PHP-5.4: fix typo in php man page
| * fix typo in php man pageRemi Collet2013-07-021-1/+1
| |
* | Merge branch 'PHP-5.4' into PHP-5.5Remi Collet2013-07-021-0/+2
|\ \ | |/ | | | | | | | | | | * PHP-5.4: Fixed Bug #65142 Missing phar man page NEWS Fixed Bug #65143 Missing php-cgi man page
| * Fixed Bug #65143 Missing php-cgi man pageRemi Collet2013-07-021-0/+2
| | | | | | | | | | | | | | Currently php-cgi man page is a simple redirect to php (CLI) man page. Could be splited / improved in the future.