Bravo List
Register
Go Back   > Bravo List > Source Code > Active Trackers > Torrent Trader
Reply
  #1  
Old 20th April 2014, 18:19
Pej4o Pej4o is offline
Member
 
Join Date: Apr 2013
P2P
Posts: 1
Exclamation µTorrent (3.4.1 build 30888) - Missing key: peer_id
I have a script TorrentTrader v2.0.8

I have a problem with newer versions of BitTorrent Stable (7.9.1) and µTorrent Stable (3.4.1).The older versions have no problem µTorrent Stable (3.3.2).

Here's the problem:

Click the image to open in full size.

Reply With Quote
  #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
  #3  
Old 23rd June 2014, 00:05
joeroberts's Avatar
joeroberts joeroberts is offline
BT.Manager Owner
 
Join Date: Jan 2008
United States
Posts: 2,113
Default
Quote:
Originally Posted by mqxxou View Post
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.
that well NEVER work Right

your looking for the $peer_id so if your tring to see if it is there you have to use $$x
$x well be the word(txt) peer_id so just using $peer_id all you well get is
peer_id
But $$x you well get
$peer_id
__________________
Do not ask me to help you work on your site that is not phpMyBitTorrent
Do not ask me to make a mod for any other source
Do not Ask me to setup your site.
I will no longer help you setup your site, there is a setup script if you have trouble with it post in the forum here or in BT.Manager™ forum
My Current Demo is here http://demo.btmanager.org/
Reply With Quote
Reply

Tags
build , key , missing , peerid , µtorrent

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump



All times are GMT +2. The time now is 02:03. vBulletin skin by ForumMonkeys. Powered by vBulletin® Version 3.8.11 Beta 3
Copyright ©2000 - 2024, vBulletin Solutions Inc.