View Single Post
  #1  
Old 28th October 2014, 17:45
aleksto aleksto is offline
Member
 
Join Date: Oct 2014
Posts: 3
Default limited downloads
Hi, I want to limited downloads in my tracker for users with low ratio. I added next text in my download.php file

$ratio = (($CURUSER['downloaded'] > (1024*1024*1024)) ? ($CURUSER['uploaded'] / $CURUSER['downloaded']) : 1);
if($ratio <= 0.50)
stderr("Stop!", "Your rating is less than 0.50. Please seed, to raise it!");

But now this limited is for all users. How to ignore donors and VIP users from this code?
Reply With Quote