Search found 6 matches

by chimpy
Tue Aug 21, 2012 12:22 pm
Forum: Plugins
Topic: execute plugin fails intermittently
Replies: 10
Views: 14825

Re: execute plugin fails intermittently

Just restarted Deluge and the fix works magnificently! Thank you so much terrukalian + others! :)

That change should probably be committed into 1.3.6, no?
by chimpy
Tue Aug 21, 2012 12:15 pm
Forum: Plugins
Topic: execute plugin fails intermittently
Replies: 10
Views: 14825

Re: execute plugin fails intermittently

This error is also causing my script to fail intermittently too. Trying out terrukalian's solution, but it's not working :(

This is indeed the file I need to edit, right? /usr/share/pyshared/deluge/plugins/Execute-1.2.egg/execute/core.py

Thanks!
by chimpy
Wed Mar 21, 2012 10:16 am
Forum: Plugins
Topic: Export from Deluge to rTorrent upon completion.
Replies: 2
Views: 11592

Re: Export from Deluge to rTorrent upon completion.

Hmm, I was wondering what would happen when it was stress tested. I haven't experienced that problem myself yet. I'm glad at least two people have got it working! Nice to know it's not too hard to set up :D So what seems to be happening is that the Execute plugin successfully executes the script eve...
by chimpy
Fri Mar 16, 2012 6:37 pm
Forum: Plugins
Topic: Manually triggering "Torrent Complete"
Replies: 3
Views: 4480

Re: Manually triggering "Torrent Complete"

Hey, author of that script here. I'm pretty sure the Perl script doesn't actually process unfinished torrents. It throws out an error if a file doesn't exist (though only if a file doesn't EXIST, it processes it if the file(s) exist, but are nevertheless unfinished). What I would advise you do is th...
by chimpy
Sun Mar 11, 2012 4:28 pm
Forum: Plugins
Topic: Export from Deluge to rTorrent upon completion.
Replies: 2
Views: 11592

Export from Deluge to rTorrent upon completion.

In my experience, whilst Deluge is superb at downloading, and uploading whilst downloading, rTorrent beats it hands-down in terms of getting connected and uploading whilst simply seeding. So I made myself a script and I thought I'd share it. I hope this helps someone (maybe even just with experiment...
by chimpy
Sun Mar 11, 2012 4:16 pm
Forum: Plugins
Topic: Move to different folder? (execute script)
Replies: 4
Views: 6515

Re: Move to different folder? (execute script)

I don't know about Windows, but the equivalent on Linux would be something like:

Code: Select all

       
torrentid=$1
torrentname=$2
torrentpath=$3
sleep 180
mv "$torrentpath/$torrentname" /
This is using the Execute plugin upon torrent completion, obviously.