i think this is the right area for this just move if needed Ok im creating a proxy using one of the templates from freeproxytemplates.com anyway, can someone let me know how to stop people downloading big files from places like rapidshare. i know there is something u gatta edit but cant remember what thanks in advance
If you're a developer, just add this code: $bad_proxy_urls = array('rapidshare.com', 'megaupload.com'); $THE_PROXIFIED_URL = ''; // this part you get from your code :) foreach($bad_proxy_urls as $url){ if($stristr($THE_PROXIFIED_URL, $url)){ exit('Not allowed access to '.$url); } } Code (markup): You can easily edit the code to your needs. If you have troubles with mergin the code, write and i'll help you!