ID: 22154
User updated by: [EMAIL PROTECTED]
Reported By: [EMAIL PROTECTED]
Status: Open
Bug Type: Apache related
Operating System: Linux 2.4.18-10
PHP Version: 4.3.0
New Comment:
Interesting...at least my test case script sometimes responds now. Not
often though. Here's a trace:
GET /php/test2.php HTTP/1.1
Host: <client hostname>
User-Agent: Mozilla/5.0 Galeon/1.2.5 (X11; Linux i586; U;) Gecko/0
Accept:
text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,video/x-mng,image/png,image/jpeg,image/gif;q=0.2,text/css,*/*;q=0.1
Accept-Language: en
Accept-Encoding: gzip, deflate, compress;q=0.9
Accept-Charset: ISO-8859-1, utf-8;q=0.66, *;q=0.66
Keep-Alive: 300
Connection: keep-alive
HTTP/1.1 200 OK
Date: Tue, 11 Feb 2003 19:50:35 GMT
Server: IBM_HTTP_SERVER/1.3.19.2 Apache/1.3.20 (Unix) PHP/4.3.1-dev
X-Powered-By: PHP/4.3.1-dev
Set-Cookie: PHPSESSID=7691fe3e49b7a476fca1e0f32bc6f33e; expires=Tue,
11-Feb-03 20:00:35 GMT; path=/; domain=.<domain>.
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0,
pre-check=0
Pragma: no-cache
Keep-Alive: timeout=15, max=100
Connection: Keep-Alive
Transfer-Encoding: chunked
Content-Type: text/html
0
Previous Comments:
------------------------------------------------------------------------
[2003-02-11 11:30:50] [EMAIL PROTECTED]
I just finished building the PHP Stable 200302111630 snapshot for IBM
HTTP Server, it built successfully. Thanks! Moving on to trying out
my scripts again...
------------------------------------------------------------------------
[2003-02-11 10:57:07] [EMAIL PROTECTED]
As I said, downloads work up to about 1MB with the sessions. Larger
than that, they fail. Even so, using headers, as long as I generate all
my headers before displaying anything it should all work.
------------------------------------------------------------------------
[2003-02-11 09:54:17] [EMAIL PROTECTED]
When you use sessions, some http headers are sent..maybe
those are the ones causing the downloads to fail?
------------------------------------------------------------------------
[2003-02-10 22:47:33] [EMAIL PROTECTED]
The compatibility issue with the IBM HTTP Server has been resolved.
Appropiate solutions are available as part of all main branches.
------------------------------------------------------------------------
[2003-02-10 22:33:28] [EMAIL PROTECTED]
Try this:
<?php
session_start();
$fp = fopen('SOMELARGETEXTFILE','r');
if ($fp)
{
fpassthru($fp);
}
else
{
echo "file not found\n";
}
?>
The reproducable error that fails for me no matter what.
------------------------------------------------------------------------
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/22154
--
Edit this bug report at http://bugs.php.net/?id=22154&edit=1