Closed RaysonYeungHK closed 1 year ago
Thanks for opening your first issue here! Be sure to follow the relevant issue templates, or risk having this issue marked as invalid.
Need at least the container logs or there's very little we can do to diagnose the problem.
A human has marked this issue as invalid, this likely happened because the issue template was not used in the creation of the issue.
You are probably using the Carbon interface that was included in the previous releases. Since version 4.0.0 this is not anymore the case. The change was announced in the release notes:
Remove bundled 3rd party UI packages
So this is not a bug but a deliberate choice by the developers (not sure why this was done but I'm sure that there are reasons).
To solve you have to add your own web interface of choice and refer to it using the TRANSMISSION_WEB_HOME variable. Or simply use the default web UI removing entirely the TRANSMISSION_WEB_HOME variable.
For other's ref here's what I did:
version: "3"
services:
transmission:
image: linuxserver/transmission
container_name: transmission
environment:
- PUID=1000
- PGID=1000
- TZ=America/Los_Angeles
- TRANSMISSION_WEB_HOME=/config/transmission-web-control/src/ #optional
volumes:
- /nas/docker-data/config/appdata/transmission:/config
- /etc/localtime:/etc/localtime:ro
- /nas/Torrents/Watch:/watch
ports:
- 9091:9091
- 51413:51413
- 51413:51413/udp
restart: unless-stopped
Then, to download the web UI files for https://github.com/ronggang/transmission-web-control, I went to /nas/docker-data/config/appdata/transmission
on my host system (which is the mapping for the /config
directory inside Docker, and did:
git clone --depth 1 https://github.com/ronggang/transmission-web-control.git
OP did not respond, closing.
Is there an existing issue for this?
Current Behavior
none of the following url can access the GUI anymore
http://x.x.x.x:29091/transmission/web/ http://x.x.x.x:29091/transmission/ http://x.x.x.x:29091/
it shows ERR_CONNECTION_REFUSED
before the update, this URL works fine http://x.x.x.x:29091/transmission/web/
Expected Behavior
Either one of the URL should be able to open the GUI
Steps To Reproduce
Environment
CPU architecture
x86-64
Docker creation
Container logs