Ok, so this is my setup now:
-Transmission 1.71 built from source, running daemon version
-Ubuntu Jaunty Desktop: Linux freedom 2.6.28-11-generic #42-Ubuntu
SMP Fri Apr 17 01:57:59 UTC 2009 i686 GNU/Linux
-Latest zip of torrent-bot (1.0.2)
-Copy of my settings.json:
{
"alt-speed-down": 50,
"alt-speed-enabled": false,
"alt-speed-time-begin": 540,
"alt-speed-time-day": 127,
"alt-speed-time-enabled": false,
"alt-speed-time-end": 1020,
"alt-speed-up": 50,
"bind-address-ipv4": "0.0.0.0",
"bind-address-ipv6": "::",
"blocklist-enabled": false,
"dht-enabled": true,
"download-dir": "\/home\/username\/Desktop",
"encryption": 1,
"lazy-bitfield-enabled": true,
"message-level": 2,
"open-file-limit": 32,
"peer-limit-global": 240,
"peer-limit-per-torrent": 60,
"peer-port": 51413,
"peer-port-random-high": 65535,
"peer-port-random-low": 49152,
"peer-port-random-on-start": false,
"peer-socket-tos": 0,
"pex-enabled": true,
"port-forwarding-enabled": true,
"preallocation": 2,
"proxy": "",
"proxy-auth-enabled": false,
"proxy-auth-password": "",
"proxy-auth-username": "",
"proxy-enabled": false,
"proxy-port": 80,
"proxy-type": 0,
"ratio-limit": 2.0000,
"ratio-limit-enabled": false,
"rpc-authentication-required": false,
"rpc-bind-address": "0.0.0.0",
"rpc-enabled": true,
"rpc-password":
"{43b2d7c3576cc862a7742f5175c82089004a5410iSSMThp6",
"rpc-port": 9091,
"rpc-username": "",
"rpc-whitelist": "127.0.0.1,192.168.1.101",
"rpc-whitelist-enabled": true,
"speed-limit-down": 100,
"speed-limit-down-enabled": false,
"speed-limit-up": 100,
"speed-limit-up-enabled": false,
"upload-slots-per-torrent": 14
java version "1.5.0_18"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_18-b02)
Java HotSpot(TM) Server VM (build 1.5.0_18-b02, mixed mode)
Everything is working fine with the above setup. I was able to
add,delete, and get info on the torrents and clients via torrent-
bot.
One thing I think might be an issue is the ip/rpc-port number of your
transmission client. Right now, I have 'localhost' and port 9091
hardcoded in my connection code, so if you are using a different port,
it would not be able to connect to your transmission client. The one
way you could fix this is go into the code found in the following
file:
/path/to/bot/python-transmission/python-transmission/
transmissionClient/transmissionClient.py
and replace every instance of 9091 with the port you are using. Or
you get change the port in settings.json to 9091, but I'm assuming if
this is the problem, you've changed that number for a reason :).
Hope this helps
Nathan
On Jun 14, 7:36 pm, Nathan Stehr <
nst...@gmail.com> wrote:
> Interesting.... I have an ubuntu machine so I'll try to reproduce your setup
> and see if I can reproduce your issue.
> I don't really have a way to formally quit the program, I usually just kill
> it using ctrl-c or kill.
>