Search found 9 matches

by Henshin
Sat Jun 26, 2021 5:02 pm
Forum: Support
Topic: UnicodeDecodeError on Deluge 2.0.3
Replies: 1
Views: 5584

Re: UnicodeDecodeError on Deluge 2.0.3

Since there was no reponse to this thread for a long time and I'm still having this issue with some torrents, I've decided to "fix" the code myself by wrapping it with a try catch as such: # Copy alert attributesa try: alert_copy = SimpleNamespace( **{ attr: getattr(alert, attr) for attr i...
by Henshin
Sun Jul 07, 2019 11:01 pm
Forum: Support
Topic: UnicodeDecodeError on Deluge 2.0.3
Replies: 1
Views: 5584

UnicodeDecodeError on Deluge 2.0.3

I've been having a few problems recently with Deluge. Not sure what is the source of the problem yet but I've came across this error on my log: 23:42:02 [INFO ][deluge.core.torrentmanager :768 ] Torrent Torrent.Name.Here removed by user: localclient 23:42:11 [INFO ][deluge.core.torrentmanager :672 ]...
by Henshin
Sun Jul 07, 2019 10:27 pm
Forum: Support
Topic: Connection to the other side was lost in a non-clean fashion
Replies: 5
Views: 10341

Re: Connection to the other side was lost in a non-clean fashion

I'm having this problem too with deluge-console.
Let me know if you find the solution.
by Henshin
Mon Oct 15, 2018 11:50 am
Forum: Support
Topic: Deluge Web client "Connection to the other side was lost in a non-clean fashion" error
Replies: 7
Views: 5671

Re: Deluge Web client "Connection to the other side was lost in a non-clean fashion" error

I downgraded my version of Twisted to 16.4.1 using pip install Twisted==16.4.1 and the 1.3 stable is now running fine. Everything is working now :) The bug with the content disposition is fixed and I'm now able to download torrents from RevTT. Thanks for your support Cas! BTW is there a way to get t...
by Henshin
Mon Oct 15, 2018 11:12 am
Forum: Support
Topic: Deluge Web client "Connection to the other side was lost in a non-clean fashion" error
Replies: 7
Views: 5671

Re: Deluge Web client "Connection to the other side was lost in a non-clean fashion" error

Hey Cas, Thanks for the support. Is there any way to install the latest 1.3 stable from the repos? I tried to install it manually using python setup.py build && sudo python setup.py install but I get a similar error than version 2.0: # deluged -v deluged: 1.3.15 libtorrent: 1.1.10.0 # which ...
by Henshin
Mon Oct 15, 2018 1:50 am
Forum: Support
Topic: Deluge Web client "Connection to the other side was lost in a non-clean fashion" error
Replies: 7
Views: 5671

Re: Deluge Web client "Connection to the other side was lost in a non-clean fashion" error

I've ran the code you suggested. I get the same error: # python deluge_test.py Unhandled Error Traceback (most recent call last): File "/usr/lib/python2.7/dist-packages/twisted/python/log.py", line 101, in callWithLogger return callWithContext({"system": lp}, func, *args, **kw) F...
by Henshin
Sun Oct 14, 2018 3:37 pm
Forum: Support
Topic: Deluge Web client "Connection to the other side was lost in a non-clean fashion" error
Replies: 7
Views: 5671

Deluge Web client "Connection to the other side was lost in a non-clean fashion" error

When I try to download torrents from certain servers, i get a "Connection to the other side was lost in a non-clean fashion" error. I've only noticed this for a specific private tracker (RevTT) so far. Currently running Deluge 1.3.15. Here's the log: [DEBUG ] 17:17:00 auth:199 Received a p...
by Henshin
Fri Nov 13, 2015 12:39 am
Forum: Development
Topic: WebUI - Remember Column Sorting And Sizes
Replies: 4
Views: 9199

Re: WebUI - Remember Column Sorting And Sizes

try to edit this file: /usr/lib/python2.7/dist-packages/deluge/ui/web/js/deluge-all.js I've commented this on another post but here it makes more sense because like atealus mentioned, the cookie that stores the column configuration expires and is removed after some days. For that reason, i've hacke...
by Henshin
Thu Nov 12, 2015 9:46 pm
Forum: Off-topic Discussion
Topic: Web UI Columns
Replies: 5
Views: 21305

Re: Web UI Columns

I was able to edit this file. Here it's specified which columns are hidden: /usr/lib/python2.7/dist-packages/deluge/ui/web/js/deluge-all.js Can you be more specific as to what you changed? I also had the same problem. Search for: {header:_("Ratio"),hidden:true,...} and change the ' true '...