Timeout while waiting for a server->client transfer to start (large files)

This is a discussion on Timeout while waiting for a server->client transfer to start (large files) within the PHP General forums, part of the PHP Programming Forums category; Hey I have a script that I am trying to figure out to allow a remote file to be sent ...


Go Back   Usenet Forums > PHP Programming Forums > PHP General

FAQ Members List Calendar Search Today's Posts Mark Forums Read
  #1 (permalink)  
Old 01-29-2008
Barney Tramble
 
Posts: n/a
Default Timeout while waiting for a server->client transfer to start (large files)


Hey

I have a script that I am trying to figure out to allow a remote file to
be sent to a client's browser. It works ok for small files, but it keeps
timing out for large files. I don't think it should even take as long as
it does (i.e. about 10seconds) before it pops up a dialog box for me to
download a 700KB file. Any ideas? It times out on a line around which reads

while (!feof($fp))
{
$tmp .= fread($fp, 64);
}

Thanks ;)
Reply With Quote
  #2 (permalink)  
Old 01-30-2008
Chris
 
Posts: n/a
Default Re: [PHP] Timeout while waiting for a server->client transfer tostart (large files)

Barney Tramble wrote:
>
> Hey
>
> I have a script that I am trying to figure out to allow a remote file to
> be sent to a client's browser. It works ok for small files, but it keeps
> timing out for large files. I don't think it should even take as long as
> it does (i.e. about 10seconds) before it pops up a dialog box for me to
> download a 700KB file. Any ideas? It times out on a line around which reads
>
> while (!feof($fp))
> {
> $tmp .= fread($fp, 64);
> }


Well you're still reading the file (or url or something) at this point.
Is it the reading of the file or sending it to the browser that fails?

A bit of context might help for this code too. Is this reading a local
file or url or what?

If it's a local file, use fpassthru (http://php.net/fpassthru) if it's
not too big. If it is a big file then use your loop but don't store it
in a $tmp variable, just output it.

--
Postgresql & php tutorials
http://www.designmagick.com/
Reply With Quote
  #3 (permalink)  
Old 01-31-2008
Richard Lynch
 
Posts: n/a
Default Re: [PHP] Timeout while waiting for a server->client transfer tostart (large files)

On Tue, January 29, 2008 12:45 pm, Barney Tramble wrote:
> I have a script that I am trying to figure out to allow a remote file
> to
> be sent to a client's browser. It works ok for small files, but it
> keeps
> timing out for large files. I don't think it should even take as long
> as
> it does (i.e. about 10seconds) before it pops up a dialog box for me
> to
> download a 700KB file. Any ideas? It times out on a line around which
> reads
>
> while (!feof($fp))
> {
> $tmp .= fread($fp, 64);
> }


Your script is reading the whole file, 64 measly bytes at a time, into
a monstrous string $tmp.

Then, finally, when you've loaded the whole [bleep] file into RAM in
$tmp, you just echo it out, right?

Don't do that.

:-)

while (!feof($fp)){
echo fread($fp, 2048);
}

You can play around with 2048 versus 64 versus 1000000 on your box to
see what's "fastest" but I'll be pretty shocked if 64 bytes is the
best performer...

--
Some people have a "gift" link here.
Know what I want?
I want you to buy a CD from some indie artist.
http://cdbaby.com/from/lynch
Yeah, I get a buck. So?
Reply With Quote
  #4 (permalink)  
Old 01-31-2008
Per Jessen
 
Posts: n/a
Default Re: [PHP] Timeout while waiting for a server->client transfer to start (large files)

Richard Lynch wrote:

> Your script is reading the whole file, 64 measly bytes at a time, into
> a monstrous string $tmp.
>
> Then, finally, when you've loaded the whole [bleep] file into RAM in
> $tmp, you just echo it out, right?
>
> Don't do that.
>
> :-)
>
> while (!feof($fp)){
> echo fread($fp, 2048);
> }



And if the OP is opening the file anyway, he might as well use
readfile() instead.


/Per Jessen, Zürich
Reply With Quote
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are Off
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT +1. The time now is 12:18 PM.


Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.0.0