I have a php file which generate a file to be downloaded using POST parameters. I already have everything working to resume file downloading (using Range header and everything related).
However, if I pause the download and then try to resume it, the browser does not send POST data in the request. This works fine using GET data instead but I'd like to keep using POST. How could I make this work ?
Notes:
- The file is generated on the fly and sent to the browser (simply print'ed by php) using the right headers.
- I cannot save the file somewhere and serve it. It has to be served on the fly.