vote up 0 vote down star
if ($_SERVER['REQUEST_METHOD']=='GET' && $_GET['download']==='1')
{
	$handle = fopen('lastdownload.txt','rw');
	$date = @fread($handle,filesize('lastdownload.txt'));

	if (time() - 30 * 60 > $date)
	{
	fwrite($handle,time());
	header('Content-type: application/zip');
	header('Content-Disposition: attachment; filename="dwnld_'.date('d_m_Y_H_i',filemtime('download.zip')).'.zip"');
	readfile('download.zip');
	}

	exit;
}

Hi everyone, i have a problem about limiting download count.

I want to limit my download count.

If someone request the file with ?download=1

It checks the current time and the time inside the file

If 30 minutes passed before the last download, it lets you download again, else it just exits.

Any help please?

Thank you.

flag
1  
Question is unclear. Your code seems reasonably correct. It should allow the file to be downloaded only every 30 minutes. Since you're just storing the download time in a text file, this 30 minute increment will apply to all users. So if Joe downloads the file a 01:00, and Suzy tries at 01:20, Suzy won't get the file. Maybe you should edit your question and be more specific about what's not working, or what you're not sure how to do. – timdev Sep 13 at 17:53
Only 1 person will use this file, so Only Joe will download it, no other poeple like Suzy. Code is not working. It's not writing to the file. That's why i can download anytime. lastdownload.txt is always empty. – DedicatedChop Sep 13 at 19:39
It is possible for the file I/O functions in PHP to be disabled for security reasons (see php.net/manual/en/…) – Ken Keenan Sep 13 at 20:00
Yeah, I'd store the timestamp in a database. Writing to the same folder as the script can bring all sorts of permissions problems. – bobince Sep 13 at 20:46

1 Answer

vote up 0 vote down

"rw" is not a valid mode for fopen. You should use "r+" or "x+" and rewind the file pointer after reading:

$handle = fopen('lastdownload.txt','r+');
$date = @fread($handle,filesize('lastdownload.txt'));
rewind($handle);
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.