Custom Query (2447 matches)
Results (142 - 144 of 2447)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#601 | Invalid | White window ! | ||
Description |
After instalation deluge-torrent_1.0.5-1_amd64.gutsy.deb and run it i see only white window. I do not see any button etc. |
|||
#3395 | WontFix | deluge-web.service does not work on debian 10 stable based on the official guide | ||
Description |
On a fresh install of Debian 10 stable test environment root@debian-s-1vcpu-1gb-ams3-01:~# lsb_release -a No LSB modules are available. Distributor ID: Debian Description: Debian GNU/Linux 10 (buster) Release: 10 Codename: buster
First downloading via root@debian-s-1vcpu-1gb-ams3-01:~# deluge-web --version deluge-web: 1.3.15 libtorrent: 1.1.11.0 root@debian-s-1vcpu-1gb-ams3-01:~# deluged --version deluged: 1.3.15 libtorrent: 1.1.11.0
Then following the official guide step by step on
to set up services works for Everything looks file until this command for checking the status root@debian-s-1vcpu-1gb-ams3-01:~# sudo systemctl status deluge-web ● deluge-web.service - Deluge Bittorrent Client Web Interface Loaded: loaded (/etc/systemd/system/deluge-web.service; enabled; vendor preset: enabled) Drop-In: /etc/systemd/system/deluge-web.service.d └─user.conf Active: failed (Result: exit-code) since Sun 2020-05-03 09:15:37 UTC; 5min ago Docs: man:deluge-web Process: 461 ExecStart=/usr/bin/strace -f /usr/bin/deluge-web -l /var/log/deluge/web.log -L debug (code=exited, status=203/EXEC) Main PID: 461 (code=exited, status=203/EXEC) May 03 09:15:37 debian-s-1vcpu-1gb-ams3-01 systemd[1]: deluge-web.service: Service RestartSec=100ms expired, scheduling restart. May 03 09:15:37 debian-s-1vcpu-1gb-ams3-01 systemd[1]: deluge-web.service: Scheduled restart job, restart counter is at 5. May 03 09:15:37 debian-s-1vcpu-1gb-ams3-01 systemd[1]: Stopped Deluge Bittorrent Client Web Interface. May 03 09:15:37 debian-s-1vcpu-1gb-ams3-01 systemd[1]: deluge-web.service: Start request repeated too quickly. May 03 09:15:37 debian-s-1vcpu-1gb-ams3-01 systemd[1]: deluge-web.service: Failed with result 'exit-code'. May 03 09:15:37 debian-s-1vcpu-1gb-ams3-01 systemd[1]: Failed to start Deluge Bittorrent Client Web Interface. You may wish to reference the bug report #927197, though I have not verified if this works yet. You may also wish to reference this old Reddit post |
|||
#2251 | WontFix | iOS 6 Caching WebUI json POST requests | ||
Description |
It would seem that iOS is caching the requests to the webui's json interface. This is causing the UI to show what seems like a playback or recorded view of the progress of the torrents -- since it's showing the cached requests which oddly isn't always the same but seemingly changing and eventually sorts it self out. But I see day old torrents randomly for awhile first. I found this on how iOS's Safari is caching in v6:
No Cache-Control or Expires headers = iOS6 Safari will cache And it seems to be new with iOS 6. I was able to fix it locally with a single line change to json_api.py @@ -274,6 +274,7 @@ class JSON(resource.Resource, component. def _send_response(self, request, response): response = json.dumps(response) request.setHeader("content-type", "application/x-json") + request.setHeader("cache-control","no-cache") request.write(compress(response, request)) request.finish() This was seen with 1.3.5 on Ubuntu installed via the ppa. |