Jump to content

Squid

Community Developer
  • Posts

    28,695
  • Joined

  • Last visited

  • Days Won

    314

Posts posted by Squid

  1. Do you have any stale browser sessions open on another device (eg: mobile phone)?  Close them all down.  After that, log out of the server, wait ~30seconds and log back in and see if the trouble continues.

     

    lsof is likely from Cache_Dirs / Folder Caching plugin.  Try uninstalling it to see if there's a difference.

  2. Because many users want this plugin, I have forked the template to allow the Apps Tab to install it (and for FCP to not complain about it being installed).

     

    I am unlocking this thread because whether or not the author has decided to go with a different direction on his OS needs, this is still the support thread for this plugin, and the plugin itself is unchanged.

     

    Note that there is ZERO support for this plugin from the author (and myself), and please feel free to fork this plugin yourself if you have the capability to support and maintain it.  I personally do not agree with the fundamental nature of what this plugin does so I will not be maintaining it.

     

     

    • Like 1
    • Thanks 2
  3. For right or wrong, the author / developer of this plugin due to the current business model of Limetech has decided to stop support / development of this plugin.

     

    While they did leave the plugin files available on GitHub for manual installation, they did decide to remove the template xml's that Community Applications uses to allow users to install the plugins.

     

    While I think that there is a bit of inconsistency in why they would decide to leave one and not the other, it is what it is.  

     

    Effectively this means that NerdTools is now no longer available to be installed.  All existing installations will wind up having Fix Common Problems flag it as being an unknown plugin (because it is no longer available to be audited for security etc by the application feed).

     

    • Like 1
    • Thanks 1
  4. On 3/17/2024 at 12:06 PM, Bait Fish said:

    This app has been blacklisted in CA with no apparent updates

     "swingmusic": {
        "Blacklist": true,
        "ModeratorComment": "Repository does not exist on docker hub

     

  5. There seems to be some confusion etc as to what this plugin is actually doing.  As I've said, it's not fixing a bug with the OS.  Nor is it patching docker itself (and undoing the security updates which they did).  In pseudo code, pre 6.12.8 Unraid handled installs and updates to containers like this

     

    1.  Loop through all of the paths listed in the user's template
    2.  Add the appropriate flags / path  to the docker run command
    3.  End loop

     

    Because of how many users set up their templates, the above would generate an error if the host path (or container path) was empty on 6.12.8. The revised code is this:

    1.  Loop through all of the paths listed in the user's template
    2.  If either the host path or container path is empty, then skip this path
    3.  Add the appropriate flags / path to the docker run command
    4.  End loop

    Actual code snip I'm adding in (and is included in future revs of the OS) is the second and third line of the following:

        if ($confType == "path") {
          if ( ! trim($hostConfig) || ! trim($containerConfig) )
            continue;
          $Volumes[] = escapeshellarg($hostConfig).':'.escapeshellarg($containerConfig).':'.escapeshellarg($Mode);

     

    This plugin has to remain installed while you're on 6.12.8. Installing it and uninstalling it (with a reboot) will undo the changes it's adding in.

     

    Once you upgrade the OS to a later version, the plugin will automatically uninstall itself - IE: there's no need to uninstall it when you upgrade - the system won't even give you the option since it won't even get installed during boot of the next releases of the OS.

  6. 5 minutes ago, CyBuzz said:

    I think i fixed it but there are still weird errors. A new flash drive took care of most.

    Yeah, everything you were showing implies a flash drive problem.  I'm surprised though that a banner wasn't displayed across every page stating Flash Drive corrupt or offline.

  7. It's a catch-all notification.  To separate them into individuals, you'd potentially get multiple notifications simultaneously.

     

    Once you see the notification, if you're comfortable with ignoring it, then hit Ignore and FCP won't send a notification if that's the only thing found.

     

    FWIW, I classify them as warnings or errors, and you have have it not send notifications for anything, or only for errors, or for everything

  8. 11 hours ago, wuyongjun said:

    Why did I send a diagnostic report and you still haven't sent a solution to the problem with Tower-2?

    There's more than one person who looks at stuff here to help users, and contrary to popular belief there are other things I do in life ;)

     

    I would look at the settings for the proxy editor, or ask wherever the support is for that plugin.  The problem started immediately after updating the plugin

    • Haha 1
  9. 10 hours ago, Arby said:

    Just wanted to put my +1 for CA Docker Auto Update to include a delay by days like the Plugin one does

    "Delay in days before updating applications:"

     

    Basically, in order to determine (without being the owner of the container itself), you have to pull it to be able to grab the date of it.  IE: Catch 22.  To determine whether its X days old and then update what you've got installed, you have to update what you have installed.

  10. Mar 11 20:52:44 TowerShowers kernel: BTRFS info (device sdc1): bdev /dev/sdc1 errs: wr 0, rd 0, flush 0, corrupt 1, gen 0

    There's some corruption on one of the members of your cache pool.  First thing to check would be to run a memtest for a couple of passes from the boot menu as most causes of corruption are memory related.  After that, wait for @JorgeB the resident BTRFS guru to advise further

×
×
  • Create New...