Tagged Questions
2
votes
5answers
2k views
PHP Streaming MP3
I have a very similar situation to the person who asked:
http://stackoverflow.com/questions/1516661/can-i-serve-mp3-files-with-php
Basically I am trying to protect mp3 files from direct download, so ...
2
votes
1answer
227 views
Downloading files with PHP - Only downloading one at a time!
I have a PHP file that serves up a file, but the problem is that no matter what browser is being used, if you click on 2 links that go to 2 separate files, the second download doesn't start until the ...
1
vote
1answer
32 views
Adobe reader online doesn't read all pdf?
As the title says i made a script to read pdf files. Only specifical files can be opened. All files last modified till 29-09-2008 can be opened. All files after can't.
Here is my code:
<!DOCTYPE ...
0
votes
4answers
162 views
Problem with PHP readfile() dumping binary data to the browser
I trying to force a download by the browser here is my code:
header("Content-Type: application/force-download");
header('Content-type: audio/mp3');
header('Content-Description: File Download');
...
0
votes
4answers
354 views
How do I force-download a dynamic image that requires arguments?
I have a dynamic image which uses GD to throw in some overlay images/text. This would be dynamicImage.php?firstName=Bob&lastName=Sacamano. I want to be prompted to download that file, so I created ...
0
votes
1answer
127 views
Edit file download info PHP/JS
Hey, I'm trying to change the name of a file being downloaded through my site off an external server.
Currently whenever I modify the header information, it just takes a reallllllyyyyyy long time for ...