|
Posted by Rik on 02/23/07 15:41
On Fri, 23 Feb 2007 16:31:57 +0100, Hendri Adriaens
<spotjeREMOVE@THISgmail.com> wrote:
>> I'd use a combo of:
>>
>> ignore_user_abort(true);
>> readfile();
>> //just for those fast downloads of small files sleep
>> //tinker with it
>> sleep(2);
>> if(!user_aborted()){
>> unlink();
>> } else {
>> //perhaps some logging, which is why I set the ignore_user_abort() to
>> true.
>> }
>
> Thanks, but unfortunately, this doesn't work. Now, the remaining part of
> the
> code is never executed. Also not when the file is saved or opened. And I
> should note that the sleep only delays the save dialog to appear, so it
> seems to be executed before readfile(), while I did put them in the right
> order.
>
> Do you maybe have another idea?
Hmnmz, perhaps a flush() after readfile_chunked is in order here, or you
server buffers output?
--
Rik Wasmus
Navigation:
[Reply to this message]
|