Forum Moderators: phranque
How could we impose a download limit on each user per day? I guess some users are using shared IP and what is a more feasible limit to set for these people?
Thanks a lot for your help!
Anyway, whether you're tracking IP's or cookie's, each time a multimedia file is requested you user a server-side programming language to check your database to see if that IP or user has reached the limit. If not, serve the file and record the request in the database. If so, then show a "Bandwidth exceeded" message.
If you really want to block by IP, you can put commands in your .htaccess file. Search Google for .htaccess and "deny from".