|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2001-01-16 14:12 UTC] derick@php.net
[2001-01-16 18:29 UTC] emily at crytech dot com
[2001-01-16 18:30 UTC] emily at crytech dot com
[2001-02-12 17:30 UTC] phanto@php.net
[2002-01-12 06:55 UTC] lobbin@php.net
[2002-02-02 06:39 UTC] sander@php.net
[2002-02-15 18:24 UTC] michael at webmtj dot com
[2002-02-16 05:15 UTC] sander@php.net
[2002-02-16 05:20 UTC] imajes@php.net
[2002-03-12 15:41 UTC] sabram at NO-SPAM dot telus dot net
[2002-03-14 06:52 UTC] stain at NOSPAM_studenti dot it
[2002-03-18 17:15 UTC] php at gustl dot at
[2002-03-25 02:57 UTC] develop at kiumars-ansari dot de
[2002-03-25 09:11 UTC] sesser@php.net
[2002-04-28 00:00 UTC] php-bugs at lists dot php dot net
[2002-06-02 16:16 UTC] k.schroeder@php.net
[2002-06-18 18:20 UTC] sniper@php.net
[2004-07-26 22:21 UTC] perl at zeno dot com
[2004-07-27 00:49 UTC] perl at zeno dot com
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Oct 27 04:00:02 2025 UTC |
Our situation is similar to that in bug report 8571, particularly situations 1 and 2. After adding, updating or deleting a record to a MSSQL database, the user is referred to this function (stored in file which is included in each page): function pageRedirect($inURL) { header("Location: $inURL"); exit; } $inURL is never exactly the same as the current URL - either you are redirected to a completely different file name, or to the same file name with a different query string appended. The record modification part always completes successfully in MSSQL, and the header() function sends the user to the new URL, but this error occurs: [start] CGI ERROR CGI application misbehaved by not returning a complete set of headers. The headers that it did return are: [end] ... and any code in the page that the user has been redirected to is NOT executed. If the user clicks refresh, it does and all is well. This is a PHP web application being ported from a Linux/mySQL environment, where it works, so it appears to be an IIS-specific issue. Thanks in advance for any feedback.