View Single Post
  #2  
Old 24th March 2009, 20:26
Krypto Krypto is offline
Retired from BVList
 
Join Date: Jan 2008
P2P
Posts: 510
Default
Most TBDev install's use the IP and Passkey as security on user accounts and tracker access.....
Seeing the Flux server is not logging into site when a torrent is started by you on your flux box the IP registered to your account and that passkey is not that held in the site database....
What you need to do is setup a proxy script on the flux box to enable you to get the box logged to your account or better still only have announce check for passkey rather then IP + passkey or IP alone !!!!!

Untill you do this Flux will not work...


Code:
    $rz = mysql_query("SELECT id, uploaded, downloaded, class FROM users WHERE ip='$ip' AND enabled = 'yes' ORDER BY last_access DESC LIMIT 1") or err("Tracker error 2");
    if ($MEMBERSONLY && mysql_num_rows($rz) == 0)
        err("Unrecognized host ($ip). Please go to $BASEURL to sign-up or login.");
Notice that the tracker checks for the IP in the user table ....thus you flux box is not going to be listed there and thus no download.....

take out the IP check if you have passkey enabled on your announce script and all will be well as it will then check account via passkey in user table and you can use any IP you wish...

Read the entire thread Board Message
Reply With Quote