|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2006-01-17 09:57 UTC] mbaroz at gmail dot com
Description: ------------ I have had this bug also inPHP 4.x(latest) and also after upgradingto version 5.1 i still have the same problem We are working on a Windows 2003 Advanced server , IIS - 6 PHP in CGI mode. When working in frames i get this error randomally: " The specified CGI application misbehaved by not returning a complete set of HTTP headers" PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Oct 27 05:00:01 2025 UTC |
Well, I have found this problem on both a W2K server runnind IIS5 and PHP 4.4.2 and on a W2003 server running IIS6. What I found was that I had this type of an include statement: <?php include("http://server/xxx.php"); ?> it would return the "misbehaved" error message. When I change that line to: <?php include("../xxx.php"); ?> The error message went away and the page displayed just fine. Hope this helps narrow down the search to a possible problem with the include statement in php 4.4.2 Jim...