Tagged Questions

2
votes
3answers
69 views

Determining successful download using php readfile

I need to know if a user selected download then clicked the cancel button, which is not the same as readfile having an error. I have inspected the count returned by the readfile function, but it ...
2
votes
1answer
282 views

get traffic caused by readfile()

I use readfile to let the client download a file through my server. Therefor I output the data which I receive from readfile('external-url') directly to the client. Now I want to determine the ...
2
votes
1answer
240 views

PHP: How to know if a user is currently downloading a file?

I'm developing a quick rapidshare-like site where the user can download files. First, I created a quick test setting headers and using readfile() but then I found in the comments section there's a way ...
2
votes
1answer
233 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
2answers
216 views

how can i redirect page while download box appears?

Now I got this code; <?php $file = "pain.png"; if (file_exists($file)) { header('Content-Description: File Transfer'); header('Content-Type: application/octet-stream'); ...
0
votes
0answers
79 views

PHP print(fread(…)) Out of memory error

I am attempting to use the following code to allow downloads from my website: while(!feof($file)) { print(fread($file, 1024*8)); flush(); if (connection_status()!=0) { ...
0
votes
2answers
57 views

Feed file outside of public_html

I am having trouble uploading a file to the user from outside of "public_html" which is the folder that everyone has access to thru http. Ex. www.website.com/ everyhting after the / is public_html. ...
0
votes
5answers
66 views

PHP downloading script

I'm trying to write a php script that will check parameters passed in before it initiates a download to the client. I've started by attempting to just initiate a download: <?php $file = ...
0
votes
3answers
115 views

Allow logged in users to view and download files (some 250+ MB) that would normally be 403 access denied

I'm building a web server out of a spare computer in my house (with Ubuntu Server 11.04), with the goal of using it as a file sharing drive that can also be accessed over the internet. Obviously, I ...