linuxserver / docker-transmission

GNU General Public License v3.0
595 stars 185 forks source link

[BUG] <Cannot access GUI after updated to 4.0.0.5.r01 in ASUSTOR NAS> #231

Closed RaysonYeungHK closed 1 year ago

RaysonYeungHK commented 1 year ago

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

  1. Click on the Transmission app of the ADM Portal of the NAS
  2. Confirm the error

Environment

- OS: ASUSTOR ADM 4.2.0.RE71
- How docker service was installed: ASUSTOR App Central

CPU architecture

x86-64

Docker creation

N/A

Container logs

N/A
github-actions[bot] commented 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.

thespad commented 1 year ago

Need at least the container logs or there's very little we can do to diagnose the problem.

github-actions[bot] commented 1 year ago

A human has marked this issue as invalid, this likely happened because the issue template was not used in the creation of the issue.

scoiattolo49 commented 1 year ago

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.

nickv2002 commented 1 year ago

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
drizuid commented 1 year ago

OP did not respond, closing.