View Single Post
  #7  
Old 14th February 2008, 20:03
Fynnon's Avatar
Fynnon Fynnon is offline
xxx
 
Join Date: Nov 2007
P2P
Posts: 984
Default Re: TBDev SZ Edition v0.3
Quote:
Originally Posted by MaZ
Did that, gave me a normal passkey but now when i download the torrent in my computer at status it says: "Failure: peer select error" how can i repaird this?
Find folowing lines in announce.php (they meets 2 times)
Code:
if( !($result = $db->sql_query($sql)) ) {
	err('peer select error');
}
change it to
Code:
if( !($result = $db->sql_query($sql)) ) {
$error = $db->sql_error();
	err('peer select error ' . $error['message']);
}
then Update tracker in your client - you'll see full text of error (eg you'll see something like this 'peer select error here goes error message from mysql').




Quote:
Originally Posted by MaexM
Wat is that??? :o
Information
No dictionary
Change in admin panel -> Configuration value for Maximum torrent size
Reply With Quote