ID:               16411
 Comment by:       cemal at dalar dot net
 Reported By:      vielina at hn dot vnn dot vn
 Status:           No Feedback
 Bug Type:         MSSQL related
 Operating System: Windows 2000
 PHP Version:      4.3.0
 New Comment:

I have the same problem
Windows 2000 Server sp3
php 4.3.1
MsSQL 2000 sp3


Previous Comments:
------------------------------------------------------------------------

[2003-05-12 07:23:03] pedro at fundacaounimed dot com dot br

I think I find the solution for this problem...
Just put this line "cgi.rfc2616_headers = 1" on php.ini.
Please, send us a message if it works. I had this problem during much
time and looking for solution, I saw that many others have it too.

PS.: sorry if there is some english error.

------------------------------------------------------------------------

[2003-03-27 00:27:00] no at dontwantspam dot com

On occasion, I get it on my win2k workstation running PHP 4.2.x on IIS5
with a max of 10 connections (limitation of the workstation version). 
Usually only happens when I start up multiple browsers to check the
display of a single page and constantly refresh each one while tweaking
my code.  Most of the time, there are no database calls involved (and
only mysql is installed).

However, also have it on another win2k machine with PHP 4.3.1 on IIS5
and mssql.  CGI header misbehaving occured on a test site with less
than 10 people accessing it, and the server is configured for heavy
load.

------------------------------------------------------------------------

[2003-02-08 20:26:16] xd1013 at 163 dot com

part for my connection class as fllow
--------------------------------------
class Connection{
        var $CID;
        var $Status=0;
        //Establish Connection to SQL Server
        function open($Host=CON_HOST,$User=CON_USER,$Pwd=CON_PWD){
          if($this->Status==1) return $this->CID;
      $this->CID=mssql_connect($Host, $User, $Pwd); 
          mssql_select_db(CON_DB);
          $this->Status=1;
          return $this->CID;
        }
        function execute($sql){
          mssql_query($sql,$this->CID);
          return mssql_rows_affected($this->CID);
        } 
        //Close Connection
        function close(){
          return mssql_close($this->CID);
        } 

} // end class

------------------------------------------------------------------------

[2003-02-08 20:24:41] xd1013 at 163 dot com

I change connection to ODBC,but this appear too.
when I press F5 button,It work well.
can u solute it? 
It's a serious problem.
now,I had to change my script from php to jsp\asp
But I really did't want to give up php.
:((( it 's hard to write english for me.

------------------------------------------------------------------------

[2003-01-20 04:00:09] [EMAIL PROTECTED]

No feedback was provided. The bug is being suspended because
we assume that you are no longer experiencing the problem.
If this is not the case and you are able to provide the
information that was requested earlier, please do so and
change the status of the bug back to "Open". Thank you.



------------------------------------------------------------------------

The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
    http://bugs.php.net/16411

-- 
Edit this bug report at http://bugs.php.net/?id=16411&edit=1

Reply via email to