|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2005-03-05 19:19 UTC] trevor dot wekel at autodesk dot com
[2005-04-17 05:39 UTC] sniper@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Oct 28 13:00:01 2025 UTC |
Description: ------------ When running PHP as an ISAPI extension under IIS 5.1 / Windows XP, the response message for a custom error is not returned. Reproduce code: --------------- <?php header("HTTP/1.1 559 CustomError"); header("Status: 559 CustomError"); echo "<html>\n"; echo "<body>\n"; echo "Error on page!!!\n"; echo "</body>\n"; echo "</html>\n"; ?> Expected result: ---------------- I would expect to see an HTTP response code of 559 with a response message of "CustomError". Actual result: -------------- The HTTP 559 response code is returned correctly but the response message comes back as "Undescribed". When running php as a CGI under IIS, this problem does not occur. Both the response code and response message come back correctly. The problem does not occur under Apache 2.0 / Windows XP when running as either a CGI or an Apache module. Bug #31519 is a related and fixed bug under Apache 2. Bug #31065 may also be a related bug under Apache / Linux.