In the interest of cleaning up temporary files on the webserver, I'm wondering if there's any way to tell when X-Sendfile downloads complete... maybe in a log somewhere? My understanding currently is that once you pass off the headers it's basically on it's own...

Much appreciated

link|improve this question
feedback

3 Answers

up vote 0 down vote accepted

Apache only logs a hit once the connection's closed, which presumably would be whenever the download is finished. So monitoring the access log for the specific download url would tell you when it's completed - comparing the logged bytes-sent v.s. how much you expected to send will also tell you if the download was successful or if it was aborted.

link|improve this answer
Ack, can confirm even with x-sendfile it only registers after completion. You can add a custom log-format if you need to know more about the specific request. – Wrikken Aug 3 '11 at 19:13
That's the way to go, looks like. – Oren Baldinger Aug 3 '11 at 19:23
feedback

I don't know of such way, but if you are running on Linux, then I think you can safely remove the file even if a download is still in progress. The file will be deleted immediately but the inode will be kept intact until all references to it are gone.

link|improve this answer
I tried using unlink($fileLocation) and passthru("rm -f $fileLocation")... both immediately removed the file and killed off the download =(. CentOS 5 btw. – Oren Baldinger Aug 3 '11 at 19:20
Are you doing it from the same PHP script that sent the header? If you do, then it is likely that you deleted the file before the header was ever sent. You need to give it some time - for example, run a cron job every hour that deletes files who's modification time is over 1 hour (or their access time, if your filesystem tracks that). – sagi Aug 3 '11 at 19:22
1  
..or you can delete it in the users's next request. – Karoly Horvath Aug 3 '11 at 19:40
feedback

If possible, you can temporary shutdown apache gracefully with apachectl -k graceful-stop. When stopped, after all requests are finished, you can remove the temporary files and start apache again.

link|improve this answer
nice practical solution for real-life environment LOL – Karoly Horvath Aug 3 '11 at 19:10
You'd be surprised for how many websites a few minutes of downtime wouldn't matter. Even 'mission critical' ones. – Ward Bekker Aug 3 '11 at 19:34
Why would I be surprised? have some experience... but if you have downloads in every 5 minutes that's just stupid. – Karoly Horvath Aug 3 '11 at 19:41
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.