summaryrefslogtreecommitdiff
path: root/sapi/cli/php_cli_server.c
Commit message (Collapse)AuthorAgeFilesLines
* Happy New YearXinchen Hui2013-01-011-1/+1
|
* Merge branch 'PHP-5.4' into PHP-5.5Lars Strojny2012-12-141-1/+4
|\
| * update list of common Mime Types in PHP development server to support Web ↵pascalc2012-12-141-1/+4
| | | | | | | | audio/video formats (Webm ,and Ogg containers) + have jpeg mime types listed together
* | Merge branch 'PHP-5.4'Xinchen Hui2012-10-101-21/+9
|\ \ | |/
| * Implemented FR #63242 (Default error page in PHP built-in web server uses ↵Xinchen Hui2012-10-101-21/+9
| | | | | | | | outdated html/css)
* | Merge branch 'PHP-5.4'Stanislav Malyshev2012-09-151-19/+22
|\ \ | |/ | | | | | | * PHP-5.4: Respond with 501 to unknown request methods
| * Respond with 501 to unknown request methodsNiklas Lindgren2012-09-151-19/+22
| | | | | | | | | | | | | | | | Fixed typo Moved 501 response from dispatch to event_read_request Return return value of send_error_page
* | Merge branch 'pull-request/132'Stanislav Malyshev2012-08-051-29/+27
|\ \ | |/ |/| | | | | | | | | | | | | * pull-request/132: OK, bye bye JavaScript, let's just include credits before license Nicer (JSLint-compliant!) credits reveal JavaScript Removed now-unnecessary expose_php checks for logo Fixed small misalignment in prev commit Removed Logo GUIDs and replaced with Data URIs and div hidden with JS
| * Removed Logo GUIDs and replaced with Data URIs and div hidden with JSAndrew Faulds2012-07-141-29/+27
| | | | | | | | | | | | | | | | | | | | | | - removed php_logo_guid() - removed php_egg_logo_guid() - removed php_real_logo_guid() - removed zend_logo_guid() - removed logo GUID handling - removed logo GUIDs from source - added logo data URIs instead for phpinfo() - added credits to phpinfo() page, but hidden by default
* | Implemented FR #62700 (have the console output 'Listening on ↵Xinchen Hui2012-07-311-1/+1
| | | | | | | | http://localhost:8000')
* | Improve error message for ssl requestXinchen Hui2012-07-221-1/+5
|/
* Fix potential leak in cli serverstealth352012-06-161-0/+3
|
* Implemented FR #61977 (Need CLI web-server support for files with .htm & svg ↵Xinchen Hui2012-05-091-5/+7
| | | | extensions)
* TypoDavid Soria Parra2012-05-081-1/+1
|
* correct variable nameXinchen Hui2012-05-061-14/+14
|
* Make css string constantXinchen Hui2012-04-211-1/+1
|
* Improved performance while sending error pageXinchen Hui2012-04-211-67/+30
| | | | this also fixed bug #61785 (Memory leak when access a non-exists file without router)
* Fixed bug #61461 (missing checks around malloc() calls).Ilia Alshanetsky2012-03-201-0/+10
|
* Implemented FR #60850 (Built in web server does not set ↵Xinchen Hui2012-03-111-0/+5
| | | | $_SERVER['SCRIPT_FILENAME'] when using router)
* Add Moriyoshi Koizumi and I to the cli SAPI creditsXinchen Hui2012-03-111-0/+1
|
* CLI Server was sending "Connection: closed" instead of "Connection: close"Rasmus Lerdorf2012-03-021-1/+1
|
* fix usage of php_output_(de)activate; I guess this code doesn't bother about ↵Michael Wallner2012-01-311-0/+11
| | | | one more hack;
* MFH: r322963Michael Wallner2012-01-311-2/+3
| | | | | | | fix headers print to stdout/stderr if no output written; fix crashes and invalid usage of output control in cli server while passing by
* - Year++Felipe Pena2012-01-011-1/+1
|
* Fix bug #60591 (Memory leak when access a non-exists file)Xinchen Hui2011-12-221-7/+35
|
* Fixed bug #60523 (PHP Errors are not reported in browsers using built-in SAPI)Xinchen Hui2011-12-161-0/+1
|
* add $_SERVER["SERVER_NAME"] since it's handyXinchen Hui2011-12-091-0/+1
|
* fix memory leakXinchen Hui2011-12-091-0/+1
|
* Fixed bug #60477 (Segfault after two multipart/form-data POST requests)Xinchen Hui2011-12-091-0/+1
|
* - implement FR #60390, SERVER_PORT missingPierre Joye2011-11-251-0/+6
|
* Fixed bug #60159 (Router returns false, but POST is not passed to requestedXinchen Hui2011-11-151-59/+57
| | | | | resource) and bug #55759 (mem leak when use built-in server)
* Fixed bug #60189 (php logo can not be displayed)Xinchen Hui2011-11-011-1/+1
|
* Fixed Bug #60180 ($_SERVER["PHP_SELF"] incorrect)Xinchen Hui2011-11-011-1/+19
|
* Fixed bug #60146 (Last 2 lines of page not being output)Xinchen Hui2011-10-291-1/+1
|
* A better fix, sorry for previous thoughtlessness commit.Xinchen Hui2011-10-241-5/+1
|
* 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
|