The current PHP code being used is :

header("Pragma: public");
header("Expires: 0");
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
header("Cache-Control: public");
header("Content-Description: File Transfer");
header("Content-Type: application/octet-stream");
header("Content-Transfer-Encoding: binary");
header("Content-Length: ".filesize($file));
header("Content-Disposition: attachment; filename=\"" . basename($file) . "\"");
header($_SERVER["SERVER_PROTOCOL"] . " 200 OK");
ob_clean();
flush();
readfile($file);

But when I download some file, the website stops functioning. The browser is sending the requests but it does not get any response from the server. They are in Pending mode until the download is finished, but once the download is finished, the server sends the response and the website starts functioning again. Can you please give a solution for this?

link|improve this question
feedback

1 Answer

If you are using file-based sessions, it could be the cause of your problems : when a script opens the session for a given user, no other script (for the same user) will be allowed to open that same session, to prevent concurrent writes.

Typical solution : close the session before doing heavy manipulations that don't require the session to remain opened.


For more informations about this, see the documentation of the session_write_close() function (quoting a portion of a relevant sentence) :

session data is locked to prevent concurrent writes only one script may operate on a session at any time.

link|improve this answer
Wow! Perfection redefined! – Ananth Apr 6 '11 at 17:37
Thank you very much.. – Ananth Apr 6 '11 at 17:38
You're welcome :-) Glad I could help. – Pascal MARTIN Apr 6 '11 at 17:38
Yup, always a fun one that one :) – El Yobo May 20 '11 at 0:01
feedback

Your Answer

 
or
required, but never shown

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