July 19Jul 19 I'm not sure when this started but I've noticed my logs just spamming missing question.png file and some not all docker apps the missing icon flashes constantly. Any ideas on how to fix it?Thanks!unraid-diagnostics-20260719-0806.zip Edited July 19Jul 19 by Fiala06
July 20Jul 20 Community Expert Does rebooting solve the issue? If yes, there's a bug report about that happening for a few users.
July 20Jul 20 Hi,I also have this. maybe you want to look at /var/log/nginx/error.log. These messages fill up my log files in /var/log:2026/07/20 19:44:47 [error] 13526#13526: *737800 open() "/usr/local/emhttp/plugins/dynamix.docker.manager/images/question.png" failed (2: No such file or directory) while sending to client, client: 10.x.y.z, server: , request: "GET /plugins/dynamix.docker.manager/images/question.png HTTP/1.1", host: "ip_of_unraid_host", referrer: "http://ip_of_unraid_host:55080/Dashboard"2026/07/20 19:44:47 [error] 13526#13526: *737800 open() "/usr/local/emhttp/plugins/dynamix.docker.manager/images/question.png" failed (2: No such file or directory) while sending to client, client: 10.x.y.z, server: , request: "GET /plugins/dynamix.docker.manager/images/question.png HTTP/1.1", host: "ip_of_unraid_host", referrer: "http://ip_of_unraid_host:55080/Dashboard"2026/07/20 19:44:47 [error] 13526#13526: *737800 open() "/usr/local/emhttp/plugins/dynamix.docker.manager/images/question.png" failed (2: No such file or directory) while sending to client, client: 10.x.y.z, server: , request: "GET /plugins/dynamix.docker.manager/images/question.png HTTP/1.1", host: "ip_of_unraid_host", referrer: "http://ip_of_unraid_host:55080/Dashboard"2026/07/20 19:44:47 [error] 13526#13526: *737800 open() "/usr/local/emhttp/plugins/dynamix.docker.manager/images/question.png" failed (2: No such file or directory) while sending to client, client: 10.x.y.z, server: , request: "GET /plugins/dynamix.docker.manager/images/question.png HTTP/1.1", host: "ip_of_unraid_host", referrer: "http://ip_of_unraid_host:55080/Dashboard"2026/07/20 19:44:47 [error] 13526#13526: *737800 open() "/usr/local/emhttp/plugins/dynamix.docker.manager/images/question.png" failed (2: No such file or directory) while sending to client, client: 10.x.y.z, server: , request: "GET /plugins/dynamix.docker.manager/images/question.png HTTP/1.1", host: "ip_of_unraid_host", referrer: "http://ip_of_unraid_host:55080/Dashboard"2026/07/20 19:44:47 [error] 13526#13526: *737800 open() "/usr/local/emhttp/plugins/dynamix.docker.manager/images/question.png" failed (2: No such file or directory) while sending to client, client: 10.x.y.z, server: , request: "GET /plugins/dynamix.docker.manager/images/question.png HTTP/1.1", host: "ip_of_unraid_host", referrer: "http://ip_of_unraid_host:55080/Dashboard"2026/07/20 19:44:47 [error] 13526#13526: *737800 open() "/usr/local/emhttp/plugins/dynamix.docker.manager/images/question.png" failed (2: No such file or directory) while sending to client, client: 10.x.y.z, server: , request: "GET /plugins/dynamix.docker.manager/images/question.png HTTP/1.1", host: "ip_of_unraid_host", referrer: "http://ip_of_unraid_host:55080/Dashboard"2026/07/20 19:44:47 [error] 13526#13526: *737800 open() "/usr/local/emhttp/plugins/dynamix.docker.manager/images/question.png" failed (2: No such file or directory) while sending to client, client: 10.x.y.z, server: , request: "GET /plugins/dynamix.docker.manager/images/question.png HTTP/1.1", host: "ip_of_unraid_host", referrer: "http://ip_of_unraid_host:55080/Dashboard"2026/07/20 19:44:47 [error] 13526#13526: *737800 open() "/usr/local/emhttp/plugins/dynamix.docker.manager/images/question.png" failed (2: No such file or directory) while sending to client, client: 10.x.y.z, server: , request: "GET /plugins/dynamix.docker.manager/images/question.png HTTP/1.1", host: "ip_of_unraid_host", referrer: "http://ip_of_unraid_host:55080/Dashboard"2026/07/20 19:44:47 [error] 13526#13526: *737800 open() "/usr/local/emhttp/plugins/dynamix.docker.manager/images/question.png" failed (2: No such file or directory) while sending to client, client: 10.x.y.z, server: , request: "GET /plugins/dynamix.docker.manager/images/question.png HTTP/1.1", host: "ip_of_unraid_host", referrer: "http://ip_of_unraid_host:55080/Dashboard"Here's what I did:- Download icons from here:https://forums.unraid.net/topic/92824-icon-collections-for-docker-folder-plugin/- Extract the zip folder with the icons- Copy one of the icons to the following folder on your unraid host (change SSH_PORT and IP_OF_UNRAID_HOST accordingly):scp -P SSH_PORT C1-128px/c1b-pirate.png root@IP_OF_UNRAID_HOST:/usr/local/emhttp/plugins/dynamix.docker.manager/images/- move into the directory on your unraid host and rename the filecd /usr/local/emhttp/plugins/dynamix.docker.manager/images/ mv c1b-pirate.png question.png- change ownership to 755chmod 755 question.png- Go to unraid dashboard and afterwards check /var/log/nginx/error.log. There should be no errors anymore. Bonus tip: "Empty" log files in /var/log if they use a lot of space: truncate -s 0 /var/log/nginx/error.logFor me this worked. I don't know how long, but at least the error messages don't occur anymore.Best regardsMaginos
July 21Jul 21 Author Thanks, I've been playing with it and just did a user script as a temp fix and seems to work. #!/bin/bash SRC=/boot/config/question.png DST=/usr/local/emhttp/plugins/dynamix.docker.manager/images/question.png [ -f "$SRC" ] && [ ! -f "$DST" ] && cp "$SRC" "$DST"
July 21Jul 21 I raised an issue and a PR for this on the Unraid Webgui github last week.Hope it gets a look at soonhttps://github.com/unraid/webgui/pull/2693@elibosley any chance you can find the time to look at this small PR? This issue is getting reported more and more in Discord as well. Edited July 21Jul 21 by chodeus
July 22Jul 22 Reported here too:https://product.unraid.net/p/7-3-2-dashboard-nginx-log-spam-from-stale-docker-template-fallback-icons
July 23Jul 23 just ran into this myself.. only noticed when i realised my "log filesystem" was showing red status at 100%. Thank you for highlighting it and raising the issue for investigation
July 24Jul 24 On 7/20/2026 at 8:42 PM, Maginos said:Hi,I also have this. maybe you want to look at /var/log/nginx/error.log. These messages fill up my log files in /var/log:2026/07/20 19:44:47 [error] 13526#13526: *737800 open() "/usr/local/emhttp/plugins/dynamix.docker.manager/images/question.png" failed (2: No such file or directory) while sending to client, client: 10.x.y.z, server: , request: "GET /plugins/dynamix.docker.manager/images/question.png HTTP/1.1", host: "ip_of_unraid_host", referrer: "http://ip_of_unraid_host:55080/Dashboard"2026/07/20 19:44:47 [error] 13526#13526: *737800 open() "/usr/local/emhttp/plugins/dynamix.docker.manager/images/question.png" failed (2: No such file or directory) while sending to client, client: 10.x.y.z, server: , request: "GET /plugins/dynamix.docker.manager/images/question.png HTTP/1.1", host: "ip_of_unraid_host", referrer: "http://ip_of_unraid_host:55080/Dashboard"2026/07/20 19:44:47 [error] 13526#13526: *737800 open() "/usr/local/emhttp/plugins/dynamix.docker.manager/images/question.png" failed (2: No such file or directory) while sending to client, client: 10.x.y.z, server: , request: "GET /plugins/dynamix.docker.manager/images/question.png HTTP/1.1", host: "ip_of_unraid_host", referrer: "http://ip_of_unraid_host:55080/Dashboard"2026/07/20 19:44:47 [error] 13526#13526: *737800 open() "/usr/local/emhttp/plugins/dynamix.docker.manager/images/question.png" failed (2: No such file or directory) while sending to client, client: 10.x.y.z, server: , request: "GET /plugins/dynamix.docker.manager/images/question.png HTTP/1.1", host: "ip_of_unraid_host", referrer: "http://ip_of_unraid_host:55080/Dashboard"2026/07/20 19:44:47 [error] 13526#13526: *737800 open() "/usr/local/emhttp/plugins/dynamix.docker.manager/images/question.png" failed (2: No such file or directory) while sending to client, client: 10.x.y.z, server: , request: "GET /plugins/dynamix.docker.manager/images/question.png HTTP/1.1", host: "ip_of_unraid_host", referrer: "http://ip_of_unraid_host:55080/Dashboard"2026/07/20 19:44:47 [error] 13526#13526: *737800 open() "/usr/local/emhttp/plugins/dynamix.docker.manager/images/question.png" failed (2: No such file or directory) while sending to client, client: 10.x.y.z, server: , request: "GET /plugins/dynamix.docker.manager/images/question.png HTTP/1.1", host: "ip_of_unraid_host", referrer: "http://ip_of_unraid_host:55080/Dashboard"2026/07/20 19:44:47 [error] 13526#13526: *737800 open() "/usr/local/emhttp/plugins/dynamix.docker.manager/images/question.png" failed (2: No such file or directory) while sending to client, client: 10.x.y.z, server: , request: "GET /plugins/dynamix.docker.manager/images/question.png HTTP/1.1", host: "ip_of_unraid_host", referrer: "http://ip_of_unraid_host:55080/Dashboard"2026/07/20 19:44:47 [error] 13526#13526: *737800 open() "/usr/local/emhttp/plugins/dynamix.docker.manager/images/question.png" failed (2: No such file or directory) while sending to client, client: 10.x.y.z, server: , request: "GET /plugins/dynamix.docker.manager/images/question.png HTTP/1.1", host: "ip_of_unraid_host", referrer: "http://ip_of_unraid_host:55080/Dashboard"2026/07/20 19:44:47 [error] 13526#13526: *737800 open() "/usr/local/emhttp/plugins/dynamix.docker.manager/images/question.png" failed (2: No such file or directory) while sending to client, client: 10.x.y.z, server: , request: "GET /plugins/dynamix.docker.manager/images/question.png HTTP/1.1", host: "ip_of_unraid_host", referrer: "http://ip_of_unraid_host:55080/Dashboard"2026/07/20 19:44:47 [error] 13526#13526: *737800 open() "/usr/local/emhttp/plugins/dynamix.docker.manager/images/question.png" failed (2: No such file or directory) while sending to client, client: 10.x.y.z, server: , request: "GET /plugins/dynamix.docker.manager/images/question.png HTTP/1.1", host: "ip_of_unraid_host", referrer: "http://ip_of_unraid_host:55080/Dashboard"Here's what I did:- Download icons from here:https://forums.unraid.net/topic/92824-icon-collections-for-docker-folder-plugin/- Extract the zip folder with the icons- Copy one of the icons to the following folder on your unraid host (change SSH_PORT and IP_OF_UNRAID_HOST accordingly):scp -P SSH_PORT C1-128px/c1b-pirate.png root@IP_OF_UNRAID_HOST:/usr/local/emhttp/plugins/dynamix.docker.manager/images/- move into the directory on your unraid host and rename the filecd /usr/local/emhttp/plugins/dynamix.docker.manager/images/ mv c1b-pirate.png question.png- change ownership to 755chmod 755 question.png- Go to unraid dashboard and afterwards check /var/log/nginx/error.log. There should be no errors anymore.Bonus tip: "Empty" log files in /var/log if they use a lot of space: truncate -s 0 /var/log/nginx/error.logFor me this worked. I don't know how long, but at least the error messages don't occur anymore.Best regardsMaginosthanks for the writeup on how to solve this for now... for some reason this does not work for me. i have the questionmark file in images: i still get this blinking missing icon even after reaplying the docker settings. But it does not give any warnings in the log anymore
July 25Jul 25 On 7/21/2026 at 12:12 AM, Maginos said:Hi,I also have this. maybe you want to look at /var/log/nginx/error.log. These messages fill up my log files in /var/log:2026/07/20 19:44:47 [error] 13526#13526: *737800 open() "/usr/local/emhttp/plugins/dynamix.docker.manager/images/question.png" failed (2: No such file or directory) while sending to client, client: 10.x.y.z, server: , request: "GET /plugins/dynamix.docker.manager/images/question.png HTTP/1.1", host: "ip_of_unraid_host", referrer: "http://ip_of_unraid_host:55080/Dashboard"2026/07/20 19:44:47 [error] 13526#13526: *737800 open() "/usr/local/emhttp/plugins/dynamix.docker.manager/images/question.png" failed (2: No such file or directory) while sending to client, client: 10.x.y.z, server: , request: "GET /plugins/dynamix.docker.manager/images/question.png HTTP/1.1", host: "ip_of_unraid_host", referrer: "http://ip_of_unraid_host:55080/Dashboard"2026/07/20 19:44:47 [error] 13526#13526: *737800 open() "/usr/local/emhttp/plugins/dynamix.docker.manager/images/question.png" failed (2: No such file or directory) while sending to client, client: 10.x.y.z, server: , request: "GET /plugins/dynamix.docker.manager/images/question.png HTTP/1.1", host: "ip_of_unraid_host", referrer: "http://ip_of_unraid_host:55080/Dashboard"2026/07/20 19:44:47 [error] 13526#13526: *737800 open() "/usr/local/emhttp/plugins/dynamix.docker.manager/images/question.png" failed (2: No such file or directory) while sending to client, client: 10.x.y.z, server: , request: "GET /plugins/dynamix.docker.manager/images/question.png HTTP/1.1", host: "ip_of_unraid_host", referrer: "http://ip_of_unraid_host:55080/Dashboard"2026/07/20 19:44:47 [error] 13526#13526: *737800 open() "/usr/local/emhttp/plugins/dynamix.docker.manager/images/question.png" failed (2: No such file or directory) while sending to client, client: 10.x.y.z, server: , request: "GET /plugins/dynamix.docker.manager/images/question.png HTTP/1.1", host: "ip_of_unraid_host", referrer: "http://ip_of_unraid_host:55080/Dashboard"2026/07/20 19:44:47 [error] 13526#13526: *737800 open() "/usr/local/emhttp/plugins/dynamix.docker.manager/images/question.png" failed (2: No such file or directory) while sending to client, client: 10.x.y.z, server: , request: "GET /plugins/dynamix.docker.manager/images/question.png HTTP/1.1", host: "ip_of_unraid_host", referrer: "http://ip_of_unraid_host:55080/Dashboard"2026/07/20 19:44:47 [error] 13526#13526: *737800 open() "/usr/local/emhttp/plugins/dynamix.docker.manager/images/question.png" failed (2: No such file or directory) while sending to client, client: 10.x.y.z, server: , request: "GET /plugins/dynamix.docker.manager/images/question.png HTTP/1.1", host: "ip_of_unraid_host", referrer: "http://ip_of_unraid_host:55080/Dashboard"2026/07/20 19:44:47 [error] 13526#13526: *737800 open() "/usr/local/emhttp/plugins/dynamix.docker.manager/images/question.png" failed (2: No such file or directory) while sending to client, client: 10.x.y.z, server: , request: "GET /plugins/dynamix.docker.manager/images/question.png HTTP/1.1", host: "ip_of_unraid_host", referrer: "http://ip_of_unraid_host:55080/Dashboard"2026/07/20 19:44:47 [error] 13526#13526: *737800 open() "/usr/local/emhttp/plugins/dynamix.docker.manager/images/question.png" failed (2: No such file or directory) while sending to client, client: 10.x.y.z, server: , request: "GET /plugins/dynamix.docker.manager/images/question.png HTTP/1.1", host: "ip_of_unraid_host", referrer: "http://ip_of_unraid_host:55080/Dashboard"2026/07/20 19:44:47 [error] 13526#13526: *737800 open() "/usr/local/emhttp/plugins/dynamix.docker.manager/images/question.png" failed (2: No such file or directory) while sending to client, client: 10.x.y.z, server: , request: "GET /plugins/dynamix.docker.manager/images/question.png HTTP/1.1", host: "ip_of_unraid_host", referrer: "http://ip_of_unraid_host:55080/Dashboard"Here's what I did:- Download icons from here:https://forums.unraid.net/topic/92824-icon-collections-for-docker-folder-plugin/- Extract the zip folder with the icons- Copy one of the icons to the following folder on your unraid host (change SSH_PORT and IP_OF_UNRAID_HOST accordingly):scp -P SSH_PORT C1-128px/c1b-pirate.png root@IP_OF_UNRAID_HOST:/usr/local/emhttp/plugins/dynamix.docker.manager/images/- move into the directory on your unraid host and rename the filecd /usr/local/emhttp/plugins/dynamix.docker.manager/images/ mv c1b-pirate.png question.png- change ownership to 755chmod 755 question.png- Go to unraid dashboard and afterwards check /var/log/nginx/error.log. There should be no errors anymore.Bonus tip: "Empty" log files in /var/log if they use a lot of space: truncate -s 0 /var/log/nginx/error.logFor me this worked. I don't know how long, but at least the error messages don't occur anymore.Best regardsMaginosThanks for the writeup Maginos. My log was inundated with these messages and my syslog.1 file had ballooned to 67MB!! This seems to have fixed the issue for now.
July 31Jul 31 Could you stop pushing updates to dynamix.docker.manager until you fix this at the OS level? I am tired of having to fix this after every single plugin update. Edited July 31Jul 31 by cprn.1337
Friday at 09:19 AM5 days I tried the temporary solution to copy the question.png to the folder but it keeps removing itself. Dunno why but I just downgrade to 7.3.1.
Saturday at 05:01 AM4 days Community Expert anybody else coming here reading this just chmod 444 the file and it can’t be removed
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.