Jellyfin Forum
Pages are not displayed correctly, pictures are not loading... - Printable Version

+- Jellyfin Forum (https://forum.jellyfin.org)
+-- Forum: Support (https://forum.jellyfin.org/f-support)
+--- Forum: Troubleshooting (https://forum.jellyfin.org/f-troubleshooting)
+--- Thread: Pages are not displayed correctly, pictures are not loading... (/t-pages-are-not-displayed-correctly-pictures-are-not-loading)

Pages: 1 2


RE: Pages are not displayed correctly, pictures are not loading... - TheDreadPirate - 2024-09-10

Can you share your docker compose with us? Also, would you be willing to switch from the Linuxserver Jellyfin image to the official Jellyfin image? Occasionally the Linuxserver image has weird quirks like this that can't be explained. You will have to start over since the Linuxserver image located their files a bit differently to the point of not being interchangeable.


RE: Pages are not displayed correctly, pictures are not loading... - dakononov - 2024-09-11

(2024-09-10, 04:29 PM)TheDreadPirate Wrote: Can you share your docker compose with us?  Also, would you be willing to switch from the Linuxserver Jellyfin image to the official Jellyfin image?  Occasionally the Linuxserver image has weird quirks like this that can't be explained.  You will have to start over since the Linuxserver image located their files a bit differently to the point of not being interchangeable.

Thanks for HELP!
1) I switch to  Jellyfin image in docker (jellyfin/jellyfin) but everything remained the same - the SHOWS are recognized, but there were no pictures, posters...
The only thing that has changed in the file system is that the jellyfin_cashу and jellyfin_config folders now have locks. Now it looks like this
Code:
dakononov@U59:~$ ls -al  /mnt/torrents/jellyfin_cashe
total 24
drwxr-xr-x  6 root root 4096 Sep 11 13:01 .
drwxrwxrwx 10 root root 4096 Sep 11 11:16 ..
drwxr-xr-x  3 root root 4096 Sep 11 11:18 images
drwxr-xr-x  2 root root 4096 Sep 11 11:19 omdb
drwxr-xr-x  2 root root 4096 Sep 11 12:16 temp
drwxr-xr-x  2 root root 4096 Sep 11 13:01 transcodes
before it looked like this
   
You can see that the access rights have changed from DAKONONOV to ROOT

docker configuration
Code:
ENTRYPOINT /jellyfin/jellyfin
ENV
DEBIAN_FRONTEND noninteractive
HEALTHCHECK_URL http://localhost:8096/health
HOME /root
JELLYFIN_CACHE_DIR /cache
JELLYFIN_CONFIG_DIR /config/config
JELLYFIN_DATA_DIR /config
JELLYFIN_FFMPEG /usr/lib/jellyfin-ffmpeg/ffmpeg
JELLYFIN_LOG_DIR /config/log
JELLYFIN_WEB_DIR /jellyfin/jellyfin-web
LANG en_US.UTF-8
LANGUAGE en_US.UTF-8
LC_ALL en_US.UTF-8
LSIO_FIRST_PARTY true
MALLOC_TRIM_THRESHOLD_ 131072
NVIDIA_DRIVER_CAPABILITIES compute,video,utility
NVIDIA_VISIBLE_DEVICES all
PATH /lsiopy/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGID 1000
PUID 1000
S6_CMD_WAIT_FOR_SERVICES_MAXTIME 0
S6_STAGE2_HOOK /docker-mods
S6_VERBOSITY 1
TERM xterm
TZ Europe/Moscow
VIRTUAL_ENV /lsiopy
XDG_CACHE_HOME /cache
Code:
Host/volume Path in container
/mnt/torrents/jellyfin_config /config
/mnt/torrents/downloads/complete/FILMS /data/movies
/mnt/torrents/downloads/complete/SER /data/tvshows
/mnt/torrents/jellyfin_cashe /cache
log


RE: Pages are not displayed correctly, pictures are not loading... - TheDreadPirate - 2024-09-11

If your timezone is accurate, is it possible TMDB, TVDB, and other sites are partially/entirely blocked in your country? Another user in India found out that their ISP blocked TMDB but not TVDB.

What happens when you try to reach TMDB on the command line?

Code:
curl -vvv https://image.tmdb.org/t/p/original/uqIVJR1fmkiwpcIsIcV0vxiyY4z.jpg -o /tmp/futurama.jpg



RE: Pages are not displayed correctly, pictures are not loading... - dakononov - 2024-09-11

(2024-09-11, 02:06 PM)TheDreadPirate Wrote: If your timezone is accurate, is it possible TMDB, TVDB, and other sites are partially/entirely blocked in your country?  Another user in India found out that their ISP blocked TMDB but not TVDB.

What happens when you try to reach TMDB on the command line?

Code:
curl -vvv https://image.tmdb.org/t/p/original/uqIVJR1fmkiwpcIsIcV0vxiyY4z.jpg -o /tmp/futurama.jpg



Code:
dakononov@U59:~$ curl -vvv https://image.tmdb.org/t/p/original/uqIVJR1fmkiwpcIsIcV0vxiyY4z.jpg -o /tmp/futurama.jpg
  % Total    % Received % Xferd  Average Speed  Time    Time    Time  Current
                                Dload  Upload  Total  Spent    Left  Speed
  0    0    0    0    0    0      0      0 --:--:-- --:--:-- --:--:--    0*  Trying 127.0.0.1:443...
* Connected to image.tmdb.org (127.0.0.1) port 443 (#0)
* ALPN: offers h2,http/1.1
} [5 bytes data]
* TLSv1.3 (OUT), TLS handshake, Client hello (1):
} [512 bytes data]
*  CAfile: /etc/ssl/certs/ca-certificates.crt
*  CApath: /etc/ssl/certs
{ [5 bytes data]
* TLSv1.3 (IN), TLS alert, unrecognized name (624):
{ [2 bytes data]
* OpenSSL/3.0.14: error:0A000458:SSL routines::tlsv1 unrecognized name
  0    0    0    0    0    0      0      0 --:--:-- --:--:-- --:--:--    0
* Closing connection 0
curl: (35) OpenSSL/3.0.14: error:0A000458:SSL routines::tlsv1 unrecognized name
dakononov@U59:~$

EMBY works greate with this folgers!  As far as I understand, they have common resources?
https://www.themoviedb.org/ I think is bloked
https://www.thetvdb.com/ works fine




thank you so much for your time!!!! I added the provider www.thetvdb.com and everything worked! Indeed, there was a blocking of https://www.themoviedb.org/ Apparently EMBY has different providers in its database! 1000000 THANKS! YOU ARE THE BEST!


RE: Pages are not displayed correctly, pictures are not loading... - TheDreadPirate - 2024-09-11

Jellyfin was forked from Emby in 2018.  Jellyfin's code has changed significantly since then.

(2024-09-11, 04:38 PM)dakononov Wrote:
Code:
* Connected to image.tmdb.org (127.0.0.1) port 443 (#0)

This line tells me it is blocked in your country.  That your DNS returned localhost for TMDB.

TVDB is not installed by default in Jellyfin, but may be installed by default in Emby.