summaryrefslogtreecommitdiff
path: root/sapi/cli/php_cli_server.c
Commit message (Collapse)AuthorAgeFilesLines
...
* Fixed PATH_INFO of /index.php/foo/barXinchen Hui2011-10-241-4/+5
|
* fix memory leakXinchen Hui2011-10-231-0/+3
|
* Fixed bug #60112 If URI does not contain a file, index.php is not servedXinchen Hui2011-10-231-19/+47
| | | | | | | This is a windows Issue. and after this fix, previously 404 request like "localhost/foo/bar" now could server correctly with request_uri "index.php" and PATH_INFO "/foo/bar/"
* Add SERVER_PROTOCOL variable to $_SERVER. Patch by kuzuha. Thanks.Moriyoshi Koizumi2011-10-211-0/+6
|
* Fixed bug #55755 (SegFault when outputting header WWW-Authenticate)Xinchen Hui2011-09-211-6/+7
|
* Remove double checking, and use MAXPATHLEN instead of a fixed lengthXinchen Hui2011-09-211-15/+4
|
* Change to a more appropriate nameXinchen Hui2011-09-211-2/+2
|
* Fixed bug #55747 (request headers missed in $_SERVER)Xinchen Hui2011-09-211-21/+24
|
* Fix Bug #55726 (Changing the working directory makes router script inaccessible)Xinchen Hui2011-09-201-0/+25
|
* Fix folderXinchen Hui2011-09-201-6/+7
|
* Fixed Bug #55423(cli-server could not output correctly in some case)Xinchen Hui2011-09-071-1/+1
|
* add friendly log messages (req #55109)Arpad Ray2011-08-291-15/+160
|
* Added _SERVER[SERVER_SOFTWARE] for built-in serverXinchen Hui2011-08-221-0/+6
|
* Fixed #55463 (cli-server missing _SERVER[REMOTE_ADDR])Xinchen Hui2011-08-221-0/+14
|
* Fixed typo when syncing changes to branchXinchen Hui2011-08-191-1/+1
|
* Fixed #55450 (Built in web server not accepting file uploads), which might ↵Xinchen Hui2011-08-191-6/+4
| | | | | | | break #55121 fixing(r313677) Reopened #55121 to let somebody redone the fixing(as I can't reproduce 55121 in redhat 64-bit).
* Fix more signed 1-bit bitfield, and let's use strlcpy/strlcat instead for theseRasmus Lerdorf2011-08-071-3/+3
| | | | | static string copies
* Signed 1-bit bitfields make no senseRasmus Lerdorf2011-08-071-1/+1
|
* Avoid a potential double-free hereRasmus Lerdorf2011-08-061-0/+1
|
* Fix #55121 Segfault with multipart/form-data POSTFlorian Anderiasch2011-07-251-1/+2
|
* - Give index.php a precedence over index.html. Patch by davidc.Moriyoshi Koizumi2011-07-231-1/+1
|
* - Show PHP_VERSION in the banner. Suggested by Chris and others.Moriyoshi Koizumi2011-07-211-2/+2
|
* Fixed bug #55071. Maybe a bit overkill?Moriyoshi Koizumi2011-07-201-1/+13
|
* - Better error handling.Moriyoshi Koizumi2011-07-201-8/+13
|
* - Fixed bug #55073 (PHP-CLI-webserver does not listen on ipv6 interfaces), ↵Moriyoshi Koizumi2011-07-201-11/+27
| | | | letting getaddrinfo(3) validate IPv6 addresses.
* - Fixed bug #55107 (Null bytes in URL cause insecure behavior (code ↵Moriyoshi Koizumi2011-07-191-0/+11
| | | | execution / code disclosure)).
* - Buffers are local to the blocks where they belong.Moriyoshi Koizumi2011-07-191-7/+6
|
* - Print HTTP method as well in the log.Moriyoshi Koizumi2011-07-191-7/+9
| | | | | | | - Print response code also when the request is processed by a script. - Those changes partly closes #55109.
* - Fixed bug #55076 (requires() fails in a subdirectory with the in-built ↵Felipe Pena2011-07-061-0/+5
| | | | webserver)
* - Fixed bug #55118 (Imcomplete start message)Felipe Pena2011-07-031-1/+9
|
* Updated name to 'PHP Development Server', and CTRL-C to Ctrl-C, as per PHP ↵Philip Olson2011-06-301-1/+1
| | | | bug #55071
* correct error message for a missing document root in the cli webserverDavid Soria Parra2011-06-291-1/+1
| | | | | the document root is always a directory.
* fix #55072 in-built web server needs to check -t option is a directoryDavid Soria Parra2011-06-291-0/+8
|
* - Fixed crash on invalid addr:port (Chris Jones, Felipe)Felipe Pena2011-06-271-3/+12
|
* - fix buildPierre Joye2011-06-211-2/+2
|
* - Add built-in web server to CLI SAPI. See the RFC for detail.Moriyoshi Koizumi2011-06-201-0/+2084