I've some pdf files on my shared hosting server of bluehost. I need to download them from iOS app & I want to show the download progress bar.
But I couldn't because Content-length is not present in Header response.
How can I get this?
I've some pdf files on my shared hosting server of bluehost. I need to download them from iOS app & I want to show the download progress bar.
But I couldn't because Content-length is not present in Header response.
How can I get this?
You can set it via header. With the header function you can set HTTP information. But note that you dont have any output before set HTTP informationen.
header('Content-type: application/pdf');
header("Content-length: $size");
header('Content-Disposition: attachment; filename="downloaded.pdf"');
Edit:
If you dont use PHP to download the file you can use SetEnv no-gzip dont-vary
in your htaccess to suppress GZIP.