anshuwap / mollify

Automatically exported from code.google.com/p/mollify
0 stars 0 forks source link

Downloading #336

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1.Downloading a file

What is the expected output? What do you see instead?
It is normal? When I download a file, while it is downloading I cannot interact 
with mollify, all I get is a "unknown response from the server"

What version of the product are you using? On what operating system?
last version

Original issue reported on code.google.com by armin.ar...@gmail.com on 20 Dec 2011 at 5:14

GoogleCodeExporter commented 9 years ago
The client (browser) is working just fine while download is happening, but the 
server does not respond to the requests until download is complete. It is not 
Mollify restriction, but PHP's. Here's explanation: 
http://stackoverflow.com/questions/1430883/simultaneous-requests-to-php-script

So this is probably session lock limitation, which prevents PHP from handling 
simultaneous requests from one client. As such, the only thing I could do is 
not to use session at all (as I can't choose the session mechanism), which is 
not very likely option (I have considered this for totally different reasons, 
but not gonna happen any day soon).

Original comment by samuli.j...@gmail.com on 26 Dec 2011 at 11:09