Search found 2221 matches

by mhertz
Sat Jun 03, 2017 6:04 pm
Forum: Support
Topic: Connecting to peers takes a long time
Replies: 36
Views: 29131

Re: Connecting to peers takes a long time

I have switched back and fourth from deluge to qbittorrent countless times, so much that I made a shell script that does it for me with settings applied and removing the other client etc, lol(changeclient.sh <deluge|qbittorrent>). Anyway, the biggest difference speedwise between the two, is that as ...
by mhertz
Sat Feb 25, 2017 11:03 pm
Forum: Plugins
Topic: [Plugin] LabelPlus v0.3.2.2
Replies: 264
Views: 796504

Re: [Plugin] LabelPlus v0.3.2.2

i do have a small issue though - when adding torrents through magnet/hash the autolabel won't assign the requested labels automatically (when using the "any file"), but will do so correctly via the "apply to existing torrents". Yeah, magnet/hash torrents are added right away to ...
by mhertz
Wed Dec 14, 2016 4:11 pm
Forum: Off-topic Discussion
Topic: Proxy better?
Replies: 8
Views: 100369

Re: Proxy better?

A paid proxy has no worse downtime than a VPN(they use multiple IPs in different countries too, just like VPNs) and you won't get a letter if using a libtorrent-based client with force-proxy enabled or newer utorrent(-server) properly configured too, and using https trackers just in case. You get fu...
by mhertz
Tue Dec 13, 2016 8:45 pm
Forum: Support
Topic: Proxy Issues
Replies: 2
Views: 2414

Re: Proxy Issues

Yes there are ways to do that, but it needs the 3'rd party plugin ltconfig with defined options force_proxy and anonymous_mode. Deluge just sends the configured proxy settings to libtorrent and that's it with regards to deluge. I've mailed with the author of libtorrent several times about this, + st...
by mhertz
Mon Nov 28, 2016 10:30 pm
Forum: Windows OS
Topic: Interface language
Replies: 3
Views: 9460

Re: Interface language

I'm the same i.e. wanting US interfaces, for reasons of looking up settings better later on etc, and deluge, like other gtk apps will do this fine even with a non US keymap, as i'm using danish there also. In short, change your $LANG var to a US one, like "en_US.UTF-8". You can also make a...
by mhertz
Mon Nov 28, 2016 7:03 pm
Forum: Support
Topic: Cant download HD files
Replies: 3
Views: 2512

Re: Cant download HD files

Does other smaller torrents work fine e.g. like this arch-linux iso: https://www.archlinux.org/releng/releases/2016.11.01/torrent/ Is the torrent failing, otherwise healthy in terms of peers/seeders? Have you checked drivespace isn't running short? Sidenote, the "OS or Distro" profile ques...
by mhertz
Sun Nov 20, 2016 2:41 pm
Forum: Windows OS
Topic: Deluge+VPN slows down the entire connection
Replies: 4
Views: 6991

Re: Deluge+VPN slows down the entire connection

Try change country in VPN client(with e.g. PIA, some few countries don't support/allow torrenting if I remember right, or else it's simply unstable network with the server used, but sounds more like throttling though). The color change reported is normal/OK.
by mhertz
Thu Nov 17, 2016 8:14 pm
Forum: Plugins
Topic: Post your execute plugin scripts!
Replies: 47
Views: 380912

Re: Post your execute plugin scripts!

Have you specifically run the test script I posted through deluge's execute plugin? I don't mean running manually what you wrote above. It's to figure out if it's a deluge plugin bug or not? My hunch is that it's probably just needed to do e.g. torrentid="$1" torrentname="$2" In ...
by mhertz
Wed Nov 16, 2016 2:40 pm
Forum: Plugins
Topic: Post your execute plugin scripts!
Replies: 47
Views: 380912

Re: Post your execute plugin scripts!

If testing with e.g.:

echo "$2" > /home/user/test.log
echo "$3" >> /home/user/test.log

Does it still not show full name/path? If it doesn't work, then it's a deluge-bug and needs code-changing.
by mhertz
Tue Nov 15, 2016 8:33 pm
Forum: Plugins
Topic: Post your execute plugin scripts!
Replies: 47
Views: 380912

Re: Post your execute plugin scripts!

Use double-quotes on variable-values. Also, something I recently found out, e.g. "$dir/*.mkv" doesn't work in bash scripts, but needs to be like this: "$dir"/*.mkv for content with spaces. ...Wish everyone would just simply follow the nice unix convention of using underscores ins...