MemHT Portal is a Free PHP CMS and Blog
It permit the creation and the management online of websites with few and easy steps.
It's completelly customizable, expandable and suitable for all needs.
Moderators: Moderators
Forum RSS feedReply
Download Limit
AuthorText
copticnet
Junior Member
Avatar

Posts: 42
Contributes: 0

Gender: _NEUTRAL_
Online: No
Date: 22/06/2008 05:03
Download Limit
#post8484
Is there anyway I can set a limit for my users to how many downloads they can download a day. I have a website that contains mainly music and video and I am expecting a lot of visitors, and I want to set a limit per person a day to conserve bandwidth?
Delete Edit Quote
 
cpet
Junior Member
Avatar

Posts: 99
Contributes: 0

Gender: _NEUTRAL_
Online: No
Date: 22/06/2008 05:27
Re: Download Limit
#post8485
Request this feature in the request forums?
Delete Edit Quote
 
mem
MemHT's Dad
Admin & Developer

Avatar

Posts: 4654
Contributes: 1961

Gender: _MALE_
Online: No
Date: 22/06/2008 10:28
Re: Download Limit
#post8491
Uhm...

Create a counter field INT (10) called "downloads" in memht_utenti.

In pages/download/index.php, when downloading a file, check this value. If it's <=20 for example, download the file, else write "too many downloads"

code
$dblink->query("UPDATE memht_utenti SET downloads=downloads+1 WHERE user='$user'");
$crow = $dblink->get_row("SELECT downloads FROM memht_utenti WHERE user='$user'");
$downloads = intval($crow['downloads']);
if ($downloads<=20) {
   //download code
} else {
   echo "Max. downloads number reached!";
}
Delete Edit Quote
 
copticnet
Junior Member
Avatar

Posts: 42
Contributes: 0

Gender: _NEUTRAL_
Online: No
Date: 22/06/2008 21:09
Re: Download Limit
#post8521
Thank you so much
Delete Edit Quote
 
copticnet
Junior Member
Avatar

Posts: 42
Contributes: 0

Gender: _NEUTRAL_
Online: No
Date: 22/06/2008 21:31
Re: Download Limit
#post8525
Where in the index.php do I add this code though memht?
Delete Edit Quote
 
mem
MemHT's Dad
Admin & Developer

Avatar

Posts: 4654
Contributes: 1961

Gender: _MALE_
Online: No
Date: 22/06/2008 22:41
Re: Download Limit
#post8532
Here you are
Attachment: index_5xm8o.php
Delete Edit Quote
 
Reply
Tags Cloud
Advertising
News Archive
Language
Help MemHT Portal
Navigator
Users Block
Hi Guest
IP: 38.103.63.59

Username
Password
New files
MemHT Wiki
Friends
MemHT Portal is a free software released under the GNU/GPL License by Miltenovik Manojlo