| 
        php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
 PatchesPull Requests
Pull requests: 
 HistoryAllCommentsChangesGit/SVN commits             
             [2015-05-18 21:06 UTC] cmb@php.net
 
-Status: Open
+Status: Analyzed
  [2015-05-18 21:06 UTC] cmb@php.net
  [2015-05-18 23:29 UTC] markus at unterwaditzer dot net
  [2015-06-27 16:31 UTC] cmb@php.net
 
-Assigned To:
+Assigned To: cmb
  [2015-06-27 16:31 UTC] cmb@php.net
  [2015-06-27 16:42 UTC] cmb@php.net
 
-Summary: php -S changes MKCALENDAR request method
+Summary: php -S changes MKCALENDAR request method to MKCOL
  [2015-06-27 18:07 UTC] cmb@php.net
  [2015-06-27 18:07 UTC] cmb@php.net
 
-Status: Analyzed
+Status: Closed
  [2015-06-27 18:47 UTC] cmb@php.net
  [2015-06-30 14:45 UTC] markus at unterwaditzer dot net
  [2015-07-07 23:37 UTC] ab@php.net
  | 
    |||||||||||||||||||||||||||
            
                 
                Copyright © 2001-2025 The PHP GroupAll rights reserved.  | 
        Last updated: Tue Nov 04 10:00:02 2025 UTC | 
Description: ------------ PHP's built-in web server changes the request method MKCALENDAR to MKCOL. Serve the given test script with: php -S localhost:8080 ./foobar.php and do a test request with e.g.: curl -X MKCALENDAR http://localhost:8080/ Test script: --------------- <?php echo $_SERVER['REQUEST_METHOD']; ?> Expected result: ---------------- The response body should be "MKCALENDAR". Actual result: -------------- The response body is "MKCOL".