Dani_ 1 Posted March 30, 2018 Posted March 30, 2018 Cant select user... i get this error in Chrome when i try this too select a user: https://i.imgur.com/0nMixGG.png
Dani_ 1 Posted March 30, 2018 Author Posted March 30, 2018 When i try too save: Exception of type 'MediaBrowser.Common.Extensions.ResourceNotFoundException' was thrown.
Luke 42083 Posted March 30, 2018 Posted March 30, 2018 Can you please attach the emby server log? You can learn how to do that here: https://emby.media/community/index.php?/topic/739-how-to-report-a-problem/ Thanks.
Dani_ 1 Posted March 30, 2018 Author Posted March 30, 2018 (edited) Look at the gif 2018-03-30 19:35:19.839 Error HttpServer: Error processing request *** Error Report *** Version: 3.3.1.11 Command line: C:\Users\Server\AppData\Roaming\Emby-Server\system\EmbyServer.dll C:\Users\Server\AppData\Roaming\Emby-Server\system\EmbyServer.dll C:\Users\Server\AppData\Roaming\Emby-Server\system\EmbyServer.dll C:\Users\Server\AppData\Roaming\Emby-Server\system\EmbyServer.dll C:\Users\Server\AppData\Roaming\Emby-Server\system\EmbyServer.dll C:\Users\Server\AppData\Roaming\Emby-Server\system\EmbyServer.dll C:\Users\Server\AppData\Roaming\Emby-Server\system\EmbyServer.dll -noautorunwebapp Operating system: Microsoft Windows NT 6.2.9200.0 64-Bit OS: True 64-Bit Process: True User Interactive: True Processor count: 4 Program data path: C:\Users\Server\AppData\Roaming\Emby-Server Application directory: C:\Users\Server\AppData\Roaming\Emby-Server\system MediaBrowser.Common.Extensions.ResourceNotFoundException: Exception of type 'MediaBrowser.Common.Extensions.ResourceNotFoundException' was thrown. at MediaBrowser.WebDashboard.Api.DashboardService.Get(GetDashboardConfigurationPage request) at Emby.Server.Implementations.Services.ServiceExecGeneral.<Execute>d__2.MoveNext() --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) at System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter.GetResult() at Emby.Server.Implementations.Services.ServiceHandler.<ProcessRequestAsync>d__13.MoveNext() --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) at Emby.Server.Implementations.HttpServer.HttpListenerHost.<RequestHandler>d__70.MoveNext() MediaBrowser.Common.Extensions.ResourceNotFoundException at MediaBrowser.WebDashboard.Api.DashboardService.Get(GetDashboardConfigurationPage request) at Emby.Server.Implementations.Services.ServiceExecGeneral.<Execute>d__2.MoveNext() --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) at System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter.GetResult() at Emby.Server.Implementations.Services.ServiceHandler.<ProcessRequestAsync>d__13.MoveNext() --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) at Emby.Server.Implementations.HttpServer.HttpListenerHost.<RequestHandler>d__70.MoveNext() embyserver.txt Edited March 30, 2018 by Dani_
Luke 42083 Posted March 30, 2018 Posted March 30, 2018 Try clicking plugins on the left, then click trakt, then try again.
Dani_ 1 Posted March 31, 2018 Author Posted March 31, 2018 Trakt plugin cant be setup behind a reverse proxy.
Luke 42083 Posted March 31, 2018 Posted March 31, 2018 Certain proxy settings may cause a problem. Have you enabled minification of resources at the proxy level? If so then turn that off. Aside from the @@pir8radio may have some tips.
pir8radio 1312 Posted March 31, 2018 Posted March 31, 2018 Trakt plugin cant be setup behind a reverse proxy. Certain proxy settings may cause a problem. Have you enabled minification of resources at the proxy level? If so then turn that off. Aside from the @@pir8radio may have some tips. I'm only good with nginx reverse proxy, but post your proxy config (remove private info) and between the other peeps on this forum, might be able to help figure out whats going on and either fix your proxy config or point out an issue that the developers can fix on the app side.
Dani_ 1 Posted March 31, 2018 Author Posted March 31, 2018 (ngnix on windows): @@pir8radio # emby.mysite.de server { gzip on; sendfile off; allow all; listen 443 ssl; listen 80; listen [::]:443 ssl; listen [::]:80; server_name emby.mysite.de; root X:/MYSITE; ssl_certificate pem.crt; ssl_certificate_key private.key; ssl_session_cache shared:SSL:10m; ssl_session_timeout 15m; ssl_protocols TLSv1.3;# Requires nginx >= 1.13.0 else use TLSv1.2 ssl_prefer_server_ciphers on; ssl_ciphers ECDHE-RSA-AES256-GCM-SHA512:DHE-RSA-AES256-GCM-SHA512:ECDHE-RSA-AES256-GCM-SHA384:DHE-RSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-SHA384; ssl_ecdh_curve secp384r1; # Requires nginx >= 1.1.0 ssl_session_cache shared:SSL:10m; ssl_session_tickets off; # Requires nginx >= 1.5.9 ssl_stapling on; # Requires nginx >= 1.3.7 ssl_stapling_verify on; # Requires nginx => 1.3.7 add_header Strict-Transport-Security "max-age=63072000; includeSubDomains; preload"; add_header X-Frame-Options DENY; add_header X-Content-Type-Options nosniff; add_header X-XSS-Protection "1; mode=block"; location /.well-known/ { default_type "text/plain"; alias X:/MYSITE/.well-known/; } location / { gzip_vary on; gzip_min_length 2140; gzip_proxied private auth; gzip_types text/plain text/css text/xml text/javascript application/x-javascript application/xml; gzip_disable "MSIE [1-6]\."; proxy_set_header X-Forwarded-Proto $scheme; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_read_timeout 980m; proxy_send_timeout 980m; proxy_pass https://emby_server; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "upgrade"; proxy_temp_path D:/cache; proxy_buffers 64 64k; proxy_buffer_size 64k; } location /Items/{ proxy_pass https://emby_server; proxy_temp_path X:/cache; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_http_version 1.1; proxy_cache proxy; proxy_cache_valid any 48h; proxy_cache_lock on; proxy_cache_use_stale updating; gzip on; gzip_vary on; proxy_ignore_headers X-Accel-Expires; proxy_ignore_headers Expires; proxy_ignore_headers Cache-Control; proxy_cache_bypass $http_cache_control; proxy_cache_use_stale error timeout updating http_500 http_502 http_503 http_504; add_header X-Proxy-Cache $upstream_cache_status; } location /videos/{ gzip on; gzip_vary on; proxy_pass https://emby_server; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_http_version 1.1; } }
pir8radio 1312 Posted May 20, 2018 Posted May 20, 2018 @@Dani_ I just noticed i never responded, did you figure this out?
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now