
Originally Posted by
Zash
It's not that they were downloading big files, because they weren't really. And it wasn't just one person. It was a bunch of people downloading A LOT of files from RapidShare.
I am keeping it banned for now, my proxy is for web surfing, not downloading.
I know that , thats why keep a browse limit , so no one can download any stuff from any website , But can browse website easily 
This worked a lot for me , i got a huge traffic but i handled it very well by setting some variables , so server load and bandwidth was in control.
I mean this one on includes/setting.php
Code:
/*****************************************************************
* Transfer options
******************************************************************/
// Time to wait for the connection (seconds) [0 for no limit]
$CONFIG['connection_timeout'] = 4;
// Time to allow for the entire transfer (seconds) [0 for no limit]
$CONFIG['transfer_timeout'] = 50;
// Allow resuming of transfers
$CONFIG['resume_transfers'] = false; //Take this as false
// Maximum filesize permitted for downloads through the proxy (bytes) [0 for no limit]
$CONFIG['max_filesize'] = 1024 * 1024 * 5 ; //This Means 5 mb
// Speed limit for target to proxy downloads (bytes/second) [0 for no limit]
$CONFIG['download_speed_limit'] = 10240 * 100;
// Queue transfers up so we only have one transfer running at a time per user
$CONFIG['queue_transfers'] = true;
Bookmarks