Connecting Tech Pros Worldwide Forums | Help | Site Map

Detecting user abort or timeout [download script]

mike_j
Guest
 
Posts: n/a
#1: Jul 17 '05
I'm writing a download script in php. This script sends files using
echo in order to limit download speed. My script has to do something
after connection abort. Everything is ok unless client pauses
downloading.

I'm using ignore_user_abort() and I'm checking connection_status()
while sending a file. When the user aborts connection, my loop breaks
and script finishes its job. But if the user pauses connection, the
script still sends a file!

I want my script to execute some commands after a break of the loop and
not to send file, if the user doesn't receive it! I don't know how to
implement that. Is it possible to do such script? Please help me. TIA


Gordon Burditt
Guest
 
Posts: n/a
#2: Jul 17 '05

re: Detecting user abort or timeout [download script]


>I'm writing a download script in php. This script sends files using[color=blue]
>echo in order to limit download speed. My script has to do something
>after connection abort. Everything is ok unless client pauses
>downloading.
>
>I'm using ignore_user_abort() and I'm checking connection_status()
>while sending a file. When the user aborts connection, my loop breaks
>and script finishes its job. But if the user pauses connection, the
>script still sends a file![/color]

How does a user running a web browser PAUSE a connection? (intentionally,
that is)

Gordon L. Burditt
G-man
Guest
 
Posts: n/a
#3: Jul 17 '05

re: Detecting user abort or timeout [download script]



"Gordon Burditt" <gordonb.63m49@burditt.org> wrote in message
news:cpnfj9$7fb@library1.airnews.net...
[color=blue]
> How does a user running a web browser PAUSE a connection? (intentionally,
> that is)[/color]

I imagine he means people downloading the file using a download manager
perhaps?

Ta,
G.


Closed Thread


Similar PHP bytes