Skip to content
View in the app

A better way to browse. Learn more.

Unraid

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.
Message added by SpencerJ,

Heads up, this plugin version is not actively maintained. Folderview3 is where you will want to go for the latest requests https://forums.unraid.net/topic/197223-plugin-folderview3/

[Plugin] FolderView2

Featured Replies

On 11/5/2025 at 11:26 PM, Erfa said:

Are your CPU and Memory data populating after updating to 7.2? I can still see the stats for individual containers but all the folder views now show the combined stats as 0%.

Also, the expanded chart view is now blank.

I am having the same issue with 7.2, when the folder is nested both CPU and Memory showing as 0/0, expanded individual containers will show their info but folder remains the same as 0/0

Edited by Unraidmule

  • Replies 409
  • Views 62.6k
  • Created
  • Last Reply

Top Posters In This Topic

Most Popular Posts

  • VladoPortos
    VladoPortos

    Hi all, wohoo celebration! 🎆 we are in Unraid Store ! Time to start fixing and improving I have some work this week but after work hours I can start look liking into stuff.

  • VladoPortos
    VladoPortos

    Hi all, I'll be finally back home on Saturday so I will have most of the next week time to fix as much as I can / be able to in FolderView... huge sorry for the delay, I was on phone only for very lon

  • Hey @VladoPortos, just thought I would bring up an oncoming headache.   URv7.1 is baking in the oven with RC1 released. v7.1 includes CSS changes as they are working on reworking responsiven

Posted Images

1 hour ago, Unraidmule said:

I am having the same issue with 7.2, when the folder is nested both CPU and Memory showing as 0/0, expanded individual containers will show their info but folder remains the same as 0/0

Also container IP not shown in advanced menu now.

But seems we lost maintainer here...

On 11/6/2025 at 10:48 AM, Free Man said:

Looks like lots of UI improvements are being worked on - very excited and appreciative of your work!

Are basic things (like clicking the globe icon and launching a new tab for the container's interface) being worked on? The command prompt & logs icons work, but the globe doesn'timage.png

Also, I just updated to 7.2 prod and initially, this didn't load for me at all - I got all my containers in an old style, single list. A couple of reloads didn't help. I went to look again this morning to grab a screen shot for a bug post, but... benign neglect has once again come to the rescue and it's grouping everything into folders again just fine!

I had this issue back on 7.1.4 as well. Switching the WebUI address from [hostname]:[port] to a hardcoded IP address and port number fixed it.

This hasn’t had a stable release update since August.

If the maintainer doesn’t come back is there anyone else capable and willing to take this plugin on? Be a real shame to have it deprecated.

3 hours ago, Dhoges said:

If the maintainer doesn’t come back is there anyone else capable and willing to take this plugin on?

Yep I hope he will have free time, if not we have a problem...

Hi Guys,

I am still on unRAID 7.1.4. I am currently using VladoPortos version 2025.02.26. It is working well for me.

I have not really look at this thread fully, but what is the status of this plug-in? Will my version work on unRAID 7.2? Can someone please summarize where we are on this.

I am holding off upgrading unRAID until this is resolved. I do NOT want to break this plugin.

This plugin should be the stock Docker page in unRAID. I could not imagine going back to that long list view.

Thanks.

2 hours ago, hernandito said:

Will my version work on unRAID 7.2

Not sure about your version but latest 04.08.2025 has some fixes but broked some visuals, you can see posts above...

  • 2 weeks later...
On 11/9/2025 at 2:18 AM, Erfa said:

I had this issue back on 7.1.4 as well. Switching the WebUI address from [hostname]:[port] to a hardcoded IP address and port number fixed it.

Could you explain this some more? I'm having the same issue. The only docker container where it works is my pihole, which is running on a different ip from the rest of my containers/nas. All the other containers show the standard warning about trusting external links, not showing the ip, but only the port number.

  • 2 weeks later...

Hi,
first of all, thanks a lot for the FolderView2 plugin, it’s really useful to keep the Docker tab organized.

I’m on Unraid 7.2.2 and FolderView2 version 2025.04.13.
I have noticed an issue with the CPU/MEM graph in the container popup:

  • The numeric CPU usage at the top is updated correctly in real time (for example “CPU/MEM: 7.5%”).

  • However, the graph area below stays completely empty/flat, with no bars or lines shown.

  • This happens for all containers, not only for one specific Docker.

  • The problem persists after browser refresh, cache clear and Unraid reboot.

I have attached a screenshot where you can clearly see the numeric CPU usage but an empty graph.

Is this a known issue with the current Unraid 7.x API, or is there anything I can do to help debug it (logs, browser console, etc.)?

Thanks again for your work on this plugin!

Senza titolo.png

So for the current downloadable version of folderview2 2025.04.13

for the folder overviews, there is one minor bug for some reason theres an extra /n causing an extra item

changing line 1209 to the follow fixes it /usr/local/emhttp/plugins/folder.view2/scripts/docker.js

e.split('\n').filter(e => e.length >= 3).forEach((e) => {

i can also confirm this one change fixes the issue you see with the graph @LDrake

@VladoPortos who forked and released folderview2 looks like he changed a bunch of stuff and reverted the release of 2025.05.26 , im sure he just got too busy with work and life happens.

So in the current source the above change wont change anything but would fix it in the current installable version.

Not exactly sure what direction this plugin should go as not sure what he was planning with the changes. the play might be to fork this at the source 2025.04.13 and just get it back to stable

Edited by phyzical

as an interim fix you can just add this as a userscript on startup to patch the file


#!/bin/bash

awk 'NR==1209{$0=" e.split(\"\\n\").filter(e => e.length >= 3).forEach((e) => {"} {print}' /usr/local/emhttp/plugins/folder.view2/scripts/docker.js > tmpfile && mv tmpfile /usr/local/emhttp/plugins/folder.view2/scripts/docker.js

Edited by phyzical

39 minutes ago, phyzical said:

as an interim fix you can just add this as a userscript on startup to patch the file


#!/bin/bash

awk 'NR==1209{$0=" e.split(\"\\n\").filter(e => e.length >= 3).forEach((e) => {"} {print}' /usr/local/emhttp/plugins/folder.view2/scripts/docker.js > tmpfile && mv tmpfile /usr/local/emhttp/plugins/folder.view2/scripts/docker.js

I used this script, thankyou for sharing!

It appears we are waiting for Vlado to find time or someone else with the skills and time to fork and continue on the project.

Hello @phyzical,

I wanted to circle back and give a huge thank you for providing the fix for the FolderView2 graph issue in version 2025.04.13.

The fix you suggested (modifying line 1209 in docker.js to include the .filter(e => e.length >= 3) part) has completely resolved the issue on my system! The graphs now display perfectly.

Thanks again for taking the time to not only understand the root cause but also for providing such a precise and effective solution. It's greatly appreciated!

If someone interested im on version 2025.08.07.4 that seems exacly same as version 2025.08.07.5

has no issues with graphs but has double values for Version :

image.png

Edited by Masterwishx

i can not open the web UI from inside the folder view 2 it redirects to about:blank#blocked i am using google chrome and i dont have any popup plugin installed. i can access the web UI BY Clicking on the down arrow and the select the applications web UI

LWServer-Docker-12-06-2025_17_09.jpg

i did try this fix

🛠️ Steps:

  1. Go to Docker tab in Unraid

  2. Click Edit on your container

  3. Switch to Advanced View (top right corner)

  4. Locate the WebUI field

  5. Change the value to: http://YOUR_IP:PORT (Use your actual local IP and the container’s WebUI port)

  6. Click Apply

Edited by Steve1965

6 hours ago, Steve1965 said:

i can not open the web UI from inside the folder view 2 it redirects to about:blank#blocked i am using google chrome and i dont have any popup plugin installed. i can access the web UI BY Clicking on the down arrow and the select the applications web UI

LWServer-Docker-12-06-2025_17_09.jpg

i did try this fix

🛠️ Steps:

  1. Go to Docker tab in Unraid

  2. Click Edit on your container

  3. Switch to Advanced View (top right corner)

  4. Locate the WebUI field

  5. Change the value to: http://YOUR_IP:PORT (Use your actual local IP and the container’s WebUI port)

  6. Click Apply

This has been mentioned many times for the stable release. It has been resolved in a beta release that you can find in the first post.

6 hours ago, Dhoges said:

This has been mentioned many times for the stable release. It has been resolved in a beta release that you can find in the first post.

i just removed the advanced setting and put it back to default and it is now working as it should do.

Hi, is there a way to reorder folders? I can't find it.

1 hour ago, system15 said:

Hi, is there a way to reorder folders? I can't find it.

Same as you would to reorder containers without the plugin. Unlock the padlock icon in the upper right (depending on your theme). Then you can drag and drop to rearrange. Then lock it again.

On 12/6/2025 at 11:27 AM, Masterwishx said:

If someone interested im on version 2025.08.07.4 that seems exacly same as version 2025.08.07.5

has no issues with graphs but has double values for Version :

image.png

I only found Version 2025.04.13 on CA.

1 hour ago, Revan335 said:

I only found Version 2025.04.13 on CA.

Check the first post on thread

2 hours ago, Masterwishx said:

Check the first post on thread

Than we hope become a new Stable on CA for all and an Developer signs of life!

  • 2 weeks later...
On 11/19/2025 at 5:02 PM, Rijstkeizer said:

Could you explain this some more? I'm having the same issue. The only docker container where it works is my pihole, which is running on a different ip from the rest of my containers/nas. All the other containers show the standard warning about trusting external links, not showing the ip, but only the port number.

Sorry for the delay - this is not a forum I frequent...

Whenever you go to create/edit a Docker container, there are a few default settings that are hidden away inside the show Advanced Options menu. Specifically, the WebUI: option will be prefilled with [hostname]:[port]. Delete that and actually type out the IP address of your NAS and the container's port (ignore the fact that Calibre has multiple WebUI ports in my screenshot). This is likely just some buggy code in the plugin that's not correctly reading the default values.
image.png

Hey

I'm having issues on with the table that lists and orders the dockers in the folder, see images below.

On the Ultrawide I have to side-scroll to select/deselect dockers, on normal 1440p I can see the selector, but I can't see the column next to it.

One possible fix is moving the table out of the <dl><dd>, and then setting width to 100% instead of 92vw

Thank you

3440x1440p

3440x1440p

2560x1440p

2560x1440p

Edited by Soitora
Styling

50 minutes ago, Soitora said:

Hey

I'm having issues on with the table that lists and orders the dockers in the folder, see images below.

On the Ultrawide I have to side-scroll to select/deselect dockers, on normal 1440p I can see the selector, but I can't see the column next to it.

One possible fix is moving the table out of the <dl><dd>, and then setting width to 100% instead of 92vw

Thank you

3440x1440p

3440x1440p

2560x1440p

2560x1440p


Setting -> Display Settings -> Display width: Unlimetet

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.

Guest
Reply to this topic...

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.