Can somehow show progress on file upload without using AJAX?
- by nimo
Let's say that I upload a file using a basic multipart post. The server then receives the request and starts to execute the server side code. Can I somehow in that state start to output the response and after some data is sent start to receive the file? Finally when the file is uploaded I output the rest of the response.
If this is possible I can display file upload progress without using ajax?
I guess this might depend on what I run server side. But let's assume that I have full network control.