View Single Post
  #2  
Old 22nd June 2014, 23:55
mqxxou mqxxou is offline
Member
 
Join Date: Mar 2013
France
Posts: 2
Default
Hi :)
Im' not sure it's your torrent client.

Try to search in announce.php :

Code:
foreach (array("passkey","info_hash","peer_id","port","downloaded","uploaded","left") as $x)
	if (!isset($$x)) // problem here, a $ is on more ...
		err("Missing key: $x");
replace by

Code:
foreach (array("passkey","info_hash","peer_id","port","downloaded","uploaded","left") as $x)
	if (!isset($x))  // now it's ok
		err("Missing key: $x");
Good luck.
Reply With Quote