View Single Post
  #1  
Old 31st January 2014, 17:25
Birkoff's Avatar
Birkoff Birkoff is offline
Senior Member
 
Join Date: Aug 2010
P2P
Posts: 24
Exclamation 0SEED / 0LEECH with UDP Blocked?
Add this in your takeupload.php:

PHP Code:
mysql_query("UPDATE torrents SET seeders='1' WHERE seeders='0' AND ts_external='yes'"); //this query is for free hostings with UDP blocked!!!
mysql_query("UPDATE torrents SET leechers='1' WHERE leechers='0' AND ts_external='yes'"); //this query is for free hostings with UDP blocked!!! 

After:

PHP Code:
 if (file_exists (TSDIR '/' $cache '/latesttorrents.html'))
  {
    @
unlink (TSDIR '/' $cache '/latesttorrents.html');
  } 
Enjoy! :)
__________________
http://lastfile.net
If you find a minimal "bug" report to me (Birkoff), receive 1 week vip!
Reply With Quote
The Following User Says Thank You to Birkoff For This Useful Post:
Marco (3rd September 2014)