|
Posted by Hendri Adriaens on 02/23/07 15:31
> 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?
Thanks, best regards,
-Hendri.
[Back to original message]
|