473,396 Members | 1,693 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

Large File Not Being Sent To Client

My company produces reports for our customers in PDF format. I have a
php script that verifies login status and access rights, and sends
the pdf to the client using readfile().

This has worked fine until recently. One of our customers' reports
is 10.6MB, and the customer never receives it and I can't get it
either. I checked the Apache access_log, and it shows varying
amounts of bytes being sent, but always close to 10MB.

I tried changing the php script to do fopen(), fread(), echo,
ob_flush() and flush(). After each flush, I write a message to a log
file. The messages in the log file stop at 10MB, as if the php script
is hung.

Using a network monitor, I see the connection being established, the
HTTP GET being sent, but no content coming back.

PHP version is 5.1.2
Apache is 2.2.3
OS is SuSE Linux Enterprise Server 10.0 - 64bit

Current test version looks like this:

ini_set("output_buffering", "0");
ini_set("implicit_flush", "1");
ini_set("memory_limit", "100M");
ini_set("max_execution_time", "600");
$lth = 0;
$in = fopen($path, "r");
while (!feof($in)) {
$data = fread($in, 8192);
$lth += strlen($data);
$errLog->WriteLog("Read $lth bytes" , "debug.txt");
echo $data;
$errLog->WriteLog("After echo" , "debug.txt");
ob_flush();
$errLog->WriteLog("After ob_flush" , "debug.txt");
flush();
$errLog->WriteLog("After flush" , "debug.txt");
}
$errLog->WriteLog("Got EOF", "debug.txt");
fclose($in);
$errLog->WriteLog("End of Script - read $lth bytes", "debug.txt");
The last five lines of the debug.txt log file say:

Read 10223616 bytes
After echo
After ob_flush
After flush
Read 10231808 bytes
After echo

So it's never returning from the ob_flush() call. Time from first
log entry to last is about 1 second.

Any ideas?
John
Mar 9 '07 #1
9 1520
On 2007-03-09 10:28, John C. Frickson wrote:
My company produces reports for our customers in PDF format. I have a
php script that verifies login status and access rights, and sends
the pdf to the client using readfile().

This has worked fine until recently. One of our customers' reports
is 10.6MB, and the customer never receives it and I can't get it
either. I checked the Apache access_log, and it shows varying
amounts of bytes being sent, but always close to 10MB.

I tried changing the php script to do fopen(), fread(), echo,
ob_flush() and flush(). After each flush, I write a message to a log
file. The messages in the log file stop at 10MB, as if the php script
is hung.

Using a network monitor, I see the connection being established, the
HTTP GET being sent, but no content coming back.

PHP version is 5.1.2
Apache is 2.2.3
OS is SuSE Linux Enterprise Server 10.0 - 64bit

Current test version looks like this:

ini_set("output_buffering", "0");
ini_set("implicit_flush", "1");
ini_set("memory_limit", "100M");
ini_set("max_execution_time", "600");
$lth = 0;
$in = fopen($path, "r");
while (!feof($in)) {
$data = fread($in, 8192);
$lth += strlen($data);
$errLog->WriteLog("Read $lth bytes" , "debug.txt");
echo $data;
$errLog->WriteLog("After echo" , "debug.txt");
ob_flush();
$errLog->WriteLog("After ob_flush" , "debug.txt");
flush();
$errLog->WriteLog("After flush" , "debug.txt");
}
$errLog->WriteLog("Got EOF", "debug.txt");
fclose($in);
$errLog->WriteLog("End of Script - read $lth bytes", "debug.txt");
The last five lines of the debug.txt log file say:

Read 10223616 bytes
After echo
After ob_flush
After flush
Read 10231808 bytes
After echo

So it's never returning from the ob_flush() call. Time from first
log entry to last is about 1 second.

Any ideas?
John
I noticed I didn't have a "Content-Length" header, so I added it
and it's now working. Even without the header, it should have
worked anyway, shouldn't it?
Mar 9 '07 #2
John C. Frickson wrote:
On 2007-03-09 10:28, John C. Frickson wrote:
>My company produces reports for our customers in PDF format. I have a
php script that verifies login status and access rights, and sends
the pdf to the client using readfile().

This has worked fine until recently. One of our customers' reports
is 10.6MB, and the customer never receives it and I can't get it
either. I checked the Apache access_log, and it shows varying
amounts of bytes being sent, but always close to 10MB.

I tried changing the php script to do fopen(), fread(), echo,
ob_flush() and flush(). After each flush, I write a message to a log
file. The messages in the log file stop at 10MB, as if the php script
is hung.

Using a network monitor, I see the connection being established, the
HTTP GET being sent, but no content coming back.

PHP version is 5.1.2
Apache is 2.2.3
OS is SuSE Linux Enterprise Server 10.0 - 64bit

Current test version looks like this:

ini_set("output_buffering", "0");
ini_set("implicit_flush", "1");
ini_set("memory_limit", "100M");
ini_set("max_execution_time", "600");
$lth = 0;
$in = fopen($path, "r");
while (!feof($in)) {
$data = fread($in, 8192);
$lth += strlen($data);
$errLog->WriteLog("Read $lth bytes" , "debug.txt");
echo $data;
$errLog->WriteLog("After echo" , "debug.txt");
ob_flush();
$errLog->WriteLog("After ob_flush" , "debug.txt");
flush();
$errLog->WriteLog("After flush" , "debug.txt");
}
$errLog->WriteLog("Got EOF", "debug.txt");
fclose($in);
$errLog->WriteLog("End of Script - read $lth bytes", "debug.txt");
The last five lines of the debug.txt log file say:

Read 10223616 bytes
After echo
After ob_flush
After flush
Read 10231808 bytes
After echo

So it's never returning from the ob_flush() call. Time from first
log entry to last is about 1 second.

Any ideas?
John

I noticed I didn't have a "Content-Length" header, so I added it
and it's now working. Even without the header, it should have
worked anyway, shouldn't it?
Not reliably. There is a reason for the Content-Length header - to let
the browser know how much to expect.

Without the header the browser is free to figure on it's own how long
the data should be (no browser I know of allows "unlimited length). And
evidently you finally exceeded the browser default.
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
js*******@attglobal.net
==================
Mar 10 '07 #3


On 2007-03-09 20:41, Jerry Stuckle wrote:
John C. Frickson wrote:
>On 2007-03-09 10:28, John C. Frickson wrote:
>>My company produces reports for our customers in PDF format. I have a
php script that verifies login status and access rights, and sends
the pdf to the client using readfile().

This has worked fine until recently. One of our customers' reports
is 10.6MB, and the customer never receives it and I can't get it
either. I checked the Apache access_log, and it shows varying
amounts of bytes being sent, but always close to 10MB.

I tried changing the php script to do fopen(), fread(), echo,
ob_flush() and flush(). After each flush, I write a message to a log
file. The messages in the log file stop at 10MB, as if the php script
is hung.

Using a network monitor, I see the connection being established, the
HTTP GET being sent, but no content coming back.

PHP version is 5.1.2
Apache is 2.2.3
OS is SuSE Linux Enterprise Server 10.0 - 64bit

Current test version looks like this:

ini_set("output_buffering", "0");
ini_set("implicit_flush", "1");
ini_set("memory_limit", "100M");
ini_set("max_execution_time", "600");
$lth = 0;
$in = fopen($path, "r");
while (!feof($in)) {
$data = fread($in, 8192);
$lth += strlen($data);
$errLog->WriteLog("Read $lth bytes" , "debug.txt");
echo $data;
$errLog->WriteLog("After echo" , "debug.txt");
ob_flush();
$errLog->WriteLog("After ob_flush" , "debug.txt");
flush();
$errLog->WriteLog("After flush" , "debug.txt");
}
$errLog->WriteLog("Got EOF", "debug.txt");
fclose($in);
$errLog->WriteLog("End of Script - read $lth bytes", "debug.txt");
The last five lines of the debug.txt log file say:

Read 10223616 bytes
After echo
After ob_flush
After flush
Read 10231808 bytes
After echo

So it's never returning from the ob_flush() call. Time from first
log entry to last is about 1 second.

Any ideas?
John

I noticed I didn't have a "Content-Length" header, so I added it
and it's now working. Even without the header, it should have
worked anyway, shouldn't it?

Not reliably. There is a reason for the Content-Length header - to let
the browser know how much to expect.

Without the header the browser is free to figure on it's own how long
the data should be (no browser I know of allows "unlimited length). And
evidently you finally exceeded the browser default.
Except NO data ever got sent to the browser. So it's something in
either PHP or Apache that decided to quit. True, I wrote bad code
by forgetting the Content-Length header, but it's a bit disturbing
that PHP or Apache just didn't send any data without any kind of
warning or error message.
Mar 11 '07 #4
John C. Frickson wrote:
>

On 2007-03-09 20:41, Jerry Stuckle wrote:
>John C. Frickson wrote:
>>On 2007-03-09 10:28, John C. Frickson wrote:
My company produces reports for our customers in PDF format. I have a
php script that verifies login status and access rights, and sends
the pdf to the client using readfile().

This has worked fine until recently. One of our customers' reports
is 10.6MB, and the customer never receives it and I can't get it
either. I checked the Apache access_log, and it shows varying
amounts of bytes being sent, but always close to 10MB.

I tried changing the php script to do fopen(), fread(), echo,
ob_flush() and flush(). After each flush, I write a message to a log
file. The messages in the log file stop at 10MB, as if the php script
is hung.

Using a network monitor, I see the connection being established, the
HTTP GET being sent, but no content coming back.

PHP version is 5.1.2
Apache is 2.2.3
OS is SuSE Linux Enterprise Server 10.0 - 64bit

Current test version looks like this:

ini_set("output_buffering", "0");
ini_set("implicit_flush", "1");
ini_set("memory_limit", "100M");
ini_set("max_execution_time", "600");
$lth = 0;
$in = fopen($path, "r");
while (!feof($in)) {
$data = fread($in, 8192);
$lth += strlen($data);
$errLog->WriteLog("Read $lth bytes" , "debug.txt");
echo $data;
$errLog->WriteLog("After echo" , "debug.txt");
ob_flush();
$errLog->WriteLog("After ob_flush" , "debug.txt");
flush();
$errLog->WriteLog("After flush" , "debug.txt");
}
$errLog->WriteLog("Got EOF", "debug.txt");
fclose($in);
$errLog->WriteLog("End of Script - read $lth bytes", "debug.txt");
The last five lines of the debug.txt log file say:

Read 10223616 bytes
After echo
After ob_flush
After flush
Read 10231808 bytes
After echo

So it's never returning from the ob_flush() call. Time from first
log entry to last is about 1 second.

Any ideas?
John

I noticed I didn't have a "Content-Length" header, so I added it
and it's now working. Even without the header, it should have
worked anyway, shouldn't it?

Not reliably. There is a reason for the Content-Length header - to
let the browser know how much to expect.

Without the header the browser is free to figure on it's own how long
the data should be (no browser I know of allows "unlimited length).
And evidently you finally exceeded the browser default.

Except NO data ever got sent to the browser. So it's something in
either PHP or Apache that decided to quit. True, I wrote bad code
by forgetting the Content-Length header, but it's a bit disturbing
that PHP or Apache just didn't send any data without any kind of
warning or error message.
What's in your Apache error log?

Or, if you are logging PHP errors to a separate log file (unusual, but
possible - check phpinfo()), what's in it?

And if there is such a severe error that PHP/Apache can't send your data
to the browser, it probably can't send an error message, either. But it
will log something.
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
js*******@attglobal.net
==================
Mar 11 '07 #5


On 2007-03-11 07:48, Jerry Stuckle wrote:
John C. Frickson wrote:
>>

On 2007-03-09 20:41, Jerry Stuckle wrote:
>>John C. Frickson wrote:
On 2007-03-09 10:28, John C. Frickson wrote:
My company produces reports for our customers in PDF format. I have a
php script that verifies login status and access rights, and sends
the pdf to the client using readfile().
>
This has worked fine until recently. One of our customers' reports
is 10.6MB, and the customer never receives it and I can't get it
either. I checked the Apache access_log, and it shows varying
amounts of bytes being sent, but always close to 10MB.
>
I tried changing the php script to do fopen(), fread(), echo,
ob_flush() and flush(). After each flush, I write a message to a log
file. The messages in the log file stop at 10MB, as if the php script
is hung.
>
Using a network monitor, I see the connection being established, the
HTTP GET being sent, but no content coming back.
>
PHP version is 5.1.2
Apache is 2.2.3
OS is SuSE Linux Enterprise Server 10.0 - 64bit
>
Current test version looks like this:
>
ini_set("output_buffering", "0");
ini_set("implicit_flush", "1");
ini_set("memory_limit", "100M");
ini_set("max_execution_time", "600");
$lth = 0;
$in = fopen($path, "r");
while (!feof($in)) {
$data = fread($in, 8192);
$lth += strlen($data);
$errLog->WriteLog("Read $lth bytes" , "debug.txt");
echo $data;
$errLog->WriteLog("After echo" , "debug.txt");
ob_flush();
$errLog->WriteLog("After ob_flush" , "debug.txt");
flush();
$errLog->WriteLog("After flush" , "debug.txt");
}
$errLog->WriteLog("Got EOF", "debug.txt");
fclose($in);
$errLog->WriteLog("End of Script - read $lth bytes", "debug.txt");
>
>
The last five lines of the debug.txt log file say:
>
Read 10223616 bytes
After echo
After ob_flush
After flush
Read 10231808 bytes
After echo
>
So it's never returning from the ob_flush() call. Time from first
log entry to last is about 1 second.
>
Any ideas?
John

I noticed I didn't have a "Content-Length" header, so I added it
and it's now working. Even without the header, it should have
worked anyway, shouldn't it?

Not reliably. There is a reason for the Content-Length header - to
let the browser know how much to expect.

Without the header the browser is free to figure on it's own how long
the data should be (no browser I know of allows "unlimited length).
And evidently you finally exceeded the browser default.

Except NO data ever got sent to the browser. So it's something in
either PHP or Apache that decided to quit. True, I wrote bad code
by forgetting the Content-Length header, but it's a bit disturbing
that PHP or Apache just didn't send any data without any kind of
warning or error message.

What's in your Apache error log?

Or, if you are logging PHP errors to a separate log file (unusual, but
possible - check phpinfo()), what's in it?

And if there is such a severe error that PHP/Apache can't send your data
to the browser, it probably can't send an error message, either. But it
will log something.
Nothing in the Apache error log (where PHP errors usually go).
The Apache access log shows a "200" response code and a short
number of bytes (such as 10343101 when it should be 11500016).

I'm cross-posting this to a couple other groups that might be
relevant.
Mar 11 '07 #6
John C. Frickson wrote:
>

On 2007-03-11 07:48, Jerry Stuckle wrote:
>John C. Frickson wrote:
>>>

On 2007-03-09 20:41, Jerry Stuckle wrote:
John C. Frickson wrote:
On 2007-03-09 10:28, John C. Frickson wrote:
>My company produces reports for our customers in PDF format. I have a
>php script that verifies login status and access rights, and sends
>the pdf to the client using readfile().
>>
>This has worked fine until recently. One of our customers' reports
>is 10.6MB, and the customer never receives it and I can't get it
>either. I checked the Apache access_log, and it shows varying
>amounts of bytes being sent, but always close to 10MB.
>>
>I tried changing the php script to do fopen(), fread(), echo,
>ob_flush() and flush(). After each flush, I write a message to a log
>file. The messages in the log file stop at 10MB, as if the php script
>is hung.
>>
>Using a network monitor, I see the connection being established, the
>HTTP GET being sent, but no content coming back.
>>
>PHP version is 5.1.2
>Apache is 2.2.3
>OS is SuSE Linux Enterprise Server 10.0 - 64bit
>>
>Current test version looks like this:
>>
> ini_set("output_buffering", "0");
> ini_set("implicit_flush", "1");
> ini_set("memory_limit", "100M");
> ini_set("max_execution_time", "600");
> $lth = 0;
> $in = fopen($path, "r");
> while (!feof($in)) {
> $data = fread($in, 8192);
> $lth += strlen($data);
> $errLog->WriteLog("Read $lth bytes" , "debug.txt");
> echo $data;
> $errLog->WriteLog("After echo" , "debug.txt");
> ob_flush();
> $errLog->WriteLog("After ob_flush" , "debug.txt");
> flush();
> $errLog->WriteLog("After flush" , "debug.txt");
> }
> $errLog->WriteLog("Got EOF", "debug.txt");
> fclose($in);
> $errLog->WriteLog("End of Script - read $lth bytes", "debug.txt");
>>
>>
>The last five lines of the debug.txt log file say:
>>
> Read 10223616 bytes
> After echo
> After ob_flush
> After flush
> Read 10231808 bytes
> After echo
>>
>So it's never returning from the ob_flush() call. Time from first
>log entry to last is about 1 second.
>>
>Any ideas?
>John
>
I noticed I didn't have a "Content-Length" header, so I added it
and it's now working. Even without the header, it should have
worked anyway, shouldn't it?

Not reliably. There is a reason for the Content-Length header - to
let the browser know how much to expect.

Without the header the browser is free to figure on it's own how
long the data should be (no browser I know of allows "unlimited
length). And evidently you finally exceeded the browser default.
Except NO data ever got sent to the browser. So it's something in
either PHP or Apache that decided to quit. True, I wrote bad code
by forgetting the Content-Length header, but it's a bit disturbing
that PHP or Apache just didn't send any data without any kind of
warning or error message.

What's in your Apache error log?

Or, if you are logging PHP errors to a separate log file (unusual, but
possible - check phpinfo()), what's in it?

And if there is such a severe error that PHP/Apache can't send your
data to the browser, it probably can't send an error message, either.
But it will log something.

Nothing in the Apache error log (where PHP errors usually go).
The Apache access log shows a "200" response code and a short
number of bytes (such as 10343101 when it should be 11500016).

I'm cross-posting this to a couple other groups that might be
relevant.
In that case data WAS sent to the browser. But since it was incomplete
it looks like the browser just didn't display anything.

That's not unusual.

--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
js*******@attglobal.net
==================
Mar 11 '07 #7
On 11 Mar, 18:11, "John C. Frickson" <frickson_AT_gibbon.comwrote:
On 2007-03-11 07:48, Jerry Stuckle wrote:
John C. Frickson wrote:
On 2007-03-09 20:41, Jerry Stuckle wrote:
John C. Frickson wrote:
On 2007-03-09 10:28, John C. Frickson wrote:
My company produces reports for our customers in PDF format. I have a
php script that verifies login status and access rights, and sends
the pdf to the client using readfile().
>>>This has worked fine until recently. One of our customers' reports
is 10.6MB, and the customer never receives it and I can't get it
either. I checked the Apache access_log, and it shows varying
amounts of bytes being sent, but always close to 10MB.
>>>I tried changing the php script to do fopen(), fread(), echo,
ob_flush() and flush(). After each flush, I write a message to a log
file. The messages in the log file stop at 10MB, as if the php script
is hung.
>>>Using a network monitor, I see the connection being established, the
HTTP GET being sent, but no content coming back.
>>>PHP version is 5.1.2
Apache is 2.2.3
OS is SuSE Linux Enterprise Server 10.0 - 64bit
>>>Current test version looks like this:
>>> ini_set("output_buffering", "0");
ini_set("implicit_flush", "1");
ini_set("memory_limit", "100M");
ini_set("max_execution_time", "600");
$lth = 0;
$in = fopen($path, "r");
while (!feof($in)) {
$data = fread($in, 8192);
$lth += strlen($data);
$errLog->WriteLog("Read $lth bytes" , "debug.txt");
echo $data;
$errLog->WriteLog("After echo" , "debug.txt");
ob_flush();
$errLog->WriteLog("After ob_flush" , "debug.txt");
flush();
$errLog->WriteLog("After flush" , "debug.txt");
}
$errLog->WriteLog("Got EOF", "debug.txt");
fclose($in);
$errLog->WriteLog("End of Script - read $lth bytes", "debug.txt");
>>>The last five lines of the debug.txt log file say:
>>> Read 10223616 bytes
After echo
After ob_flush
After flush
Read 10231808 bytes
After echo
>>>So it's never returning from the ob_flush() call. Time from first
log entry to last is about 1 second.
>>>Any ideas?
John
>>I noticed I didn't have a "Content-Length" header, so I added it
and it's now working. Even without the header, it should have
worked anyway, shouldn't it?
>Not reliably. There is a reason for the Content-Length header - to
let the browser know how much to expect.
>Without the header the browser is free to figure on it's own how long
the data should be (no browser I know of allows "unlimited length).
And evidently you finally exceeded the browser default.
Except NO data ever got sent to the browser. So it's something in
either PHP or Apache that decided to quit. True, I wrote bad code
by forgetting the Content-Length header, but it's a bit disturbing
that PHP or Apache just didn't send any data without any kind of
warning or error message.
What's in your Apache error log?
Or, if you are logging PHP errors to a separate log file (unusual, but
possible - check phpinfo()), what's in it?
And if there is such a severe error that PHP/Apache can't send your data
to the browser, it probably can't send an error message, either. But it
will log something.

Nothing in the Apache error log (where PHP errors usually go).
The Apache access log shows a "200" response code and a short
number of bytes (such as 10343101 when it should be 11500016).

I'm cross-posting this to a couple other groups that might be
relevant.
resume.
If in doubt put a static PDF served only by apache (not through
script), and then GET that, stop it half way through and then refresh,
watch the headers for status 206 and info about number of bytes offset/
number of bytes content length.

Mar 12 '07 #8


On 2007-03-11 13:34, Jerry Stuckle wrote:
John C. Frickson wrote:
>>

On 2007-03-11 07:48, Jerry Stuckle wrote:
>>John C. Frickson wrote:
On 2007-03-09 20:41, Jerry Stuckle wrote:
John C. Frickson wrote:
>On 2007-03-09 10:28, John C. Frickson wrote:
>>My company produces reports for our customers in PDF format. I have a
>>php script that verifies login status and access rights, and sends
>>the pdf to the client using readfile().
>>>
>>This has worked fine until recently. One of our customers' reports
>>is 10.6MB, and the customer never receives it and I can't get it
>>either. I checked the Apache access_log, and it shows varying
>>amounts of bytes being sent, but always close to 10MB.
>>>
>>I tried changing the php script to do fopen(), fread(), echo,
>>ob_flush() and flush(). After each flush, I write a message to a log
>>file. The messages in the log file stop at 10MB, as if the php script
>>is hung.
>>>
>>Using a network monitor, I see the connection being established, the
>>HTTP GET being sent, but no content coming back.
>>>
>>PHP version is 5.1.2
>>Apache is 2.2.3
>>OS is SuSE Linux Enterprise Server 10.0 - 64bit
>>>
>>Current test version looks like this:
>>>
>> ini_set("output_buffering", "0");
>> ini_set("implicit_flush", "1");
>> ini_set("memory_limit", "100M");
>> ini_set("max_execution_time", "600");
>> $lth = 0;
>> $in = fopen($path, "r");
>> while (!feof($in)) {
>> $data = fread($in, 8192);
>> $lth += strlen($data);
>> $errLog->WriteLog("Read $lth bytes" , "debug.txt");
>> echo $data;
>> $errLog->WriteLog("After echo" , "debug.txt");
>> ob_flush();
>> $errLog->WriteLog("After ob_flush" , "debug.txt");
>> flush();
>> $errLog->WriteLog("After flush" , "debug.txt");
>> }
>> $errLog->WriteLog("Got EOF", "debug.txt");
>> fclose($in);
>> $errLog->WriteLog("End of Script - read $lth bytes", "debug.txt");
>>>
>>>
>>The last five lines of the debug.txt log file say:
>>>
>> Read 10223616 bytes
>> After echo
>> After ob_flush
>> After flush
>> Read 10231808 bytes
>> After echo
>>>
>>So it's never returning from the ob_flush() call. Time from first
>>log entry to last is about 1 second.
>>>
>>Any ideas?
>>John
>>
>I noticed I didn't have a "Content-Length" header, so I added it
>and it's now working. Even without the header, it should have
>worked anyway, shouldn't it?
>
Not reliably. There is a reason for the Content-Length header - to
let the browser know how much to expect.
>
Without the header the browser is free to figure on it's own how
long the data should be (no browser I know of allows "unlimited
length). And evidently you finally exceeded the browser default.
>

Except NO data ever got sent to the browser. So it's something in
either PHP or Apache that decided to quit. True, I wrote bad code
by forgetting the Content-Length header, but it's a bit disturbing
that PHP or Apache just didn't send any data without any kind of
warning or error message.

What's in your Apache error log?

Or, if you are logging PHP errors to a separate log file (unusual, but
possible - check phpinfo()), what's in it?

And if there is such a severe error that PHP/Apache can't send your
data to the browser, it probably can't send an error message, either.
But it will log something.

Nothing in the Apache error log (where PHP errors usually go).
The Apache access log shows a "200" response code and a short
number of bytes (such as 10343101 when it should be 11500016).

I'm cross-posting this to a couple other groups that might be
relevant.

In that case data WAS sent to the browser. But since it was incomplete
it looks like the browser just didn't display anything.

That's not unusual.
In my original message I wrote "Using a network monitor, I see
the connection being established, the HTTP GET being sent, but
no content coming back." The browser did NOT receive ANY data.
Mar 12 '07 #9
John C. Frickson wrote:
>

On 2007-03-11 13:34, Jerry Stuckle wrote:
>John C. Frickson wrote:
>>>

On 2007-03-11 07:48, Jerry Stuckle wrote:
John C. Frickson wrote:
>
>
On 2007-03-09 20:41, Jerry Stuckle wrote:
>John C. Frickson wrote:
>>On 2007-03-09 10:28, John C. Frickson wrote:
>>>My company produces reports for our customers in PDF format. I
>>>have a
>>>php script that verifies login status and access rights, and sends
>>>the pdf to the client using readfile().
>>>>
>>>This has worked fine until recently. One of our customers' reports
>>>is 10.6MB, and the customer never receives it and I can't get it
>>>either. I checked the Apache access_log, and it shows varying
>>>amounts of bytes being sent, but always close to 10MB.
>>>>
>>>I tried changing the php script to do fopen(), fread(), echo,
>>>ob_flush() and flush(). After each flush, I write a message to a
>>>log
>>>file. The messages in the log file stop at 10MB, as if the php
>>>script
>>>is hung.
>>>>
>>>Using a network monitor, I see the connection being established,
>>>the
>>>HTTP GET being sent, but no content coming back.
>>>>
>>>PHP version is 5.1.2
>>>Apache is 2.2.3
>>>OS is SuSE Linux Enterprise Server 10.0 - 64bit
>>>>
>>>Current test version looks like this:
>>>>
>>> ini_set("output_buffering", "0");
>>> ini_set("implicit_flush", "1");
>>> ini_set("memory_limit", "100M");
>>> ini_set("max_execution_time", "600");
>>> $lth = 0;
>>> $in = fopen($path, "r");
>>> while (!feof($in)) {
>>> $data = fread($in, 8192);
>>> $lth += strlen($data);
>>> $errLog->WriteLog("Read $lth bytes" , "debug.txt");
>>> echo $data;
>>> $errLog->WriteLog("After echo" , "debug.txt");
>>> ob_flush();
>>> $errLog->WriteLog("After ob_flush" , "debug.txt");
>>> flush();
>>> $errLog->WriteLog("After flush" , "debug.txt");
>>> }
>>> $errLog->WriteLog("Got EOF", "debug.txt");
>>> fclose($in);
>>> $errLog->WriteLog("End of Script - read $lth bytes",
>>>"debug.txt");
>>>>
>>>>
>>>The last five lines of the debug.txt log file say:
>>>>
>>> Read 10223616 bytes
>>> After echo
>>> After ob_flush
>>> After flush
>>> Read 10231808 bytes
>>> After echo
>>>>
>>>So it's never returning from the ob_flush() call. Time from first
>>>log entry to last is about 1 second.
>>>>
>>>Any ideas?
>>>John
>>>
>>I noticed I didn't have a "Content-Length" header, so I added it
>>and it's now working. Even without the header, it should have
>>worked anyway, shouldn't it?
>>
>Not reliably. There is a reason for the Content-Length header -
>to let the browser know how much to expect.
>>
>Without the header the browser is free to figure on it's own how
>long the data should be (no browser I know of allows "unlimited
>length). And evidently you finally exceeded the browser default.
>>
>
Except NO data ever got sent to the browser. So it's something in
either PHP or Apache that decided to quit. True, I wrote bad code
by forgetting the Content-Length header, but it's a bit disturbing
that PHP or Apache just didn't send any data without any kind of
warning or error message.

What's in your Apache error log?

Or, if you are logging PHP errors to a separate log file (unusual,
but possible - check phpinfo()), what's in it?

And if there is such a severe error that PHP/Apache can't send your
data to the browser, it probably can't send an error message,
either. But it will log something.
Nothing in the Apache error log (where PHP errors usually go).
The Apache access log shows a "200" response code and a short
number of bytes (such as 10343101 when it should be 11500016).

I'm cross-posting this to a couple other groups that might be
relevant.

In that case data WAS sent to the browser. But since it was
incomplete it looks like the browser just didn't display anything.

That's not unusual.

In my original message I wrote "Using a network monitor, I see
the connection being established, the HTTP GET being sent, but
no content coming back." The browser did NOT receive ANY data.
And your Apache log says around 10M was sent. What happened to it?

--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
js*******@attglobal.net
==================
Mar 12 '07 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
by: zhimin | last post by:
Hi, I'm writing a program to send large file(100m) through dotnet using TCPListener & TCPClient, I'm sending the file with a ask and response loop: 1. Client send a flag 1 to server indicate it...
4
by: zhimin | last post by:
Hi, I'm writing a program to send large file(100m) through dotnet using TCPListener & TCPClient, I'm sending the file with a ask and response loop: 1. Client send a flag 1 to server indicate it...
11
by: Ron Vecchi | last post by:
I've used System.Web.Mail before but have never had the need to send attchemnets through it...until now. A client of mine would like a form on the website to allow a user to type up a message and...
3
by: Buddy Ackerman | last post by:
I'm trying to write files directly to the client so that it forces the client to open the Save As dialog box rather than display the file. On some occasions the files are very large (100MB+). On...
7
by: iporter | last post by:
I use the code below to authorise the download of certain files. Thus, instead of linking to the file in a wwwroot directory, I link to this code with the filename as a parameter, and the script...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.