Search found 66 matches

by CSB
Fri Jul 29, 2011 6:02 pm
Forum: Plugins
Topic: [Request] Delete torrent and data on queue
Replies: 7
Views: 8608

Re: [Request] Delete torrent and data on queue

So you want to have a maximum number of torrents seeding (or total?) for a particular tracker? I wrote a plugin for myself to do something similar... it deletes torrents (not removing data) to adhere to per tracker maximum settings... torrents older than 1 day are removed first, in descending order ...
by CSB
Fri Jul 29, 2011 2:53 am
Forum: Plugins
Topic: [Suggestion] Move entire torrents between Deluge instances
Replies: 5
Views: 4391

Re: [Suggestion] Move entire torrents between Deluge instanc

If deluge doesn't know about the tracker, the tracker doesn't know about deluge. Pretty simple.
by CSB
Tue Jul 26, 2011 7:57 pm
Forum: Support
Topic: WebUI keeps losing connection with large number of torrents.
Replies: 15
Views: 18501

Re: WebUI keeps losing connection with large number of torre

sudo ifconfig lo0 add 127.0.0.2 Clearly won't work on windows, so I'm assuming the problem is you're not aliasing 127.0.0.2 to loopback. Try reading here: http://www-01.ibm.com/support/docview.wss?uid=swg21233295 EDIT: that's specifically ipv6... try http://answers.microsoft.com/en-us/windows/forum...
by CSB
Tue Jul 26, 2011 2:02 am
Forum: Support
Topic: WebUI keeps losing connection with large number of torrents.
Replies: 15
Views: 18501

Re: WebUI keeps losing connection with large number of torre

Try googling: http://oldsite.precedence.co.uk/nc/putty.html

If you can't get putty to tunnel for you, see if cygwin's ssh is compatible.
by CSB
Tue Jul 26, 2011 1:31 am
Forum: Plugins
Topic: [Request] Delete torrent and data on queue
Replies: 7
Views: 8608

Re: Delete torrent and data on queue

How to set deluge to delete torrent AND DATA after it is queued after seeding or simply after some time or ratio? This is possible using a plugin or client script, but without a coherent and understandable description of what you want specifically, all I can do is direct you here: http://dev.deluge...
by CSB
Mon Jul 25, 2011 7:00 pm
Forum: Support
Topic: WebUI keeps losing connection with large number of torrents.
Replies: 15
Views: 18501

Re: WebUI keeps losing connection with large number of torre

The GTK client performs much better, and allows you to perform functions not available in the web ui. I boot a VM whenever I need to use it, so honestly, I personally would hardly find having an application installed an inconvenient work-around. If trying other browsers doesn't do the job, there isn...
by CSB
Mon Jul 25, 2011 3:03 am
Forum: Support
Topic: WebUI keeps losing connection with large number of torrents.
Replies: 15
Views: 18501

Re: WebUI keeps losing connection with large number of torre

Anything preventing you from trying using a remotely connected GTK client?
by CSB
Fri Jul 22, 2011 12:15 am
Forum: Plugins
Topic: [Script] Cron to delete Torrents and Files over certain age
Replies: 16
Views: 20894

Re: Cron to delete Torrents and Files over certain age

#!/usr/bin/python from deluge.log import LOG as log from deluge.ui.client import client import deluge.component as component from twisted.internet import reactor, defer import time ############ # Change the following d = client.connect(host='127.0.0.1',port=xxxx,username="xxxx",password=&...
by CSB
Thu Jul 21, 2011 5:40 am
Forum: Plugins
Topic: [Script] Cron to delete Torrents and Files over certain age
Replies: 16
Views: 20894

Re: Cron to delete Torrents and Files over certain age

Exactly. And, when running the daemon with debug output, it doesn't even show any of the torrentmanager.remove debug output. As if the command never even runs. Not sure what version you're using, but in 1.3.2 at least, core.remove_torrent doesn't have remove_data as an optional argument, so you can...
by CSB
Thu Jul 21, 2011 4:07 am
Forum: Plugins
Topic: [Script] Cron to delete Torrents and Files over certain age
Replies: 16
Views: 20894

Re: Cron to delete Torrents and Files over certain age

So this print is executed:
print "[+] Removed %s: %s from %s" % (humantime, status["name"], status["save_path"])
But the torrents aren't removed?