dorgan

Community Developer
  • Posts

    351
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by dorgan

  1. Custom Servers should only be used if selecting a server from the list isnt working. Looks like right now you have SUBASIC-CABLE (10.10.10.5:32400) selected in the list and then also defined in the Custom Servers list, remove that entry and I suspect you'll be fine.
  2. Switching to EUFI boot made me be able to boot again, so I am not sure whats going on.
  3. I upgraded from 6.11.1 to 6.11.3 and as soon as I rebooted i can no longer boot, as I am getting Boot Error
  4. What are you looking to have fixed soon?
  5. You should definitely only use one IP per server. I'll try to look into this shortly
  6. No this is not normal, can you make sure you only have one of the servers IP addresses selected in the options.
  7. Currently it no longer generates the graphs, and just outputs texts. This was a quick work around to remove the dependency issues, I'll be adding graphs back in a future release, using a different approach.
  8. Fix is out there for this now.
  9. Once it gets the token you should see it trying to reload the servers list, is that happening? What browser are you using? Essentially that servers list is populated by a call to the central plex API, to get the list of servers from them.
  10. Yes, you need to login to plex as that's how it gets a token. It works against plex's apis.
  11. I'll get a fix out for this today
  12. @Squid would it be possible to get the deprecated tag removed from this plugin?
  13. Updated plugin has been released to address this issue. Sorry I dont use plex for audio too much and there is where the issue occurred.
  14. Thanks I'll get this fixed ASAP.
  15. new release is out there, its rough, but it brings this plugin back to life from having additional steps to get it working. Any and all feedback is appreciated and will be considered.
  16. @Squid the dependency problem exists only when I was trying to use the vnstati commend, which is what was actually generating the images. While that will still get installed with the vnstat package I am no longer going to rely on it/use it, thus removing the requirement to install other packages.
  17. OK everyone motivated me to get off my behind and really update this plugin. Update coming this week. It's a work in progress, but I have figured out a can get a json response from the cli tool and will use that to display some out put. This initial release will just be text, but I'll look into putting back in much better looking graphs and such in a future release.
  18. This is not a dynamix plugin. But I believe there may be hope, I just havent had time to really look into things. Unfortunately with 6.10 they removed a bunch of these dependencies that vnstati needs to run, its what generates the images. So I am thinking if I can parse the output from just vnstat then maybe i can get this working again. So I'm not tapping out yet. Stay tuned for more!!!
  19. Ok yes I can look into this can you please provide the unraid version as well as Plex version on your side. Also the local IP is that server on your local network or remote VPN?
  20. currently because of dependency changes from 6.9 to 6.10, this plugin isnt fully working by itself at least the image outputs arent. in order to fix the outputs you would have to install the missing dependencies. After discussion with others i dont think this plugin should do dependency management for this because of the dependencies its needs. That being said here is a scrip tthat you can run install stall the missing dependencies. #!/bin/bash wget https://slackware.uk/slackware/slackware64-14.2/slackware64/l/gd-2.2.1-x86_64-1.txz upgradepkg --install-new gd-2.2.1-x86_64-1.txz wget https://slackware.uk/slackware/slackware64-14.2/slackware64/x/fontconfig-2.11.1-x86_64-2.txz upgradepkg --install-new fontconfig-2.11.1-x86_64-2.txz wget https://slackware.uk/slackware/slackware64-14.2/slackware64/l/harfbuzz-1.2.7-x86_64-1.txz upgradepkg --install-new harfbuzz-1.2.7-x86_64-1.txz wget https://slackware.uk/slackware/slackware64-14.2/slackware64/l/freetype-2.6.3-x86_64-1.txz upgradepkg --install-new freetype-2.6.3-x86_64-1.txz wget https://slackware.uk/slackware/slackware64-14.2/slackware64/x/libXpm-3.5.11-x86_64-2.txz upgradepkg --install-new libXpm-3.5.11-x86_64-2.txz wget https://slackware.uk/slackware/slackware64-14.2/slackware64/x/libX11-1.6.3-x86_64-2.txz upgradepkg --install-new libX11-1.6.3-x86_64-2.txz wget https://slackware.uk/slackware/slackware64-14.2/slackware64/x/libxcb-1.11.1-x86_64-1.txz upgradepkg --install-new libxcb-1.11.1-x86_64-1.txz wget https://slackware.uk/slackware/slackware64-14.2/slackware64/x/libXau-1.0.8-x86_64-2.txz upgradepkg --install-new libXau-1.0.8-x86_64-2.txz wget https://slackware.uk/slackware/slackware64-14.2/slackware64/x/libXdmcp-1.1.2-x86_64-2.txz upgradepkg --install-new libXdmcp-1.1.2-x86_64-2.txz
  21. I was able to work around this by viewing the source, removing the disabled attribute from the renew button and then clicking on the renew button.
  22. I am not sure if this is an issue with rc2 or just in general. but it seems while the management access screen shows the cert as not expiring until next month, the browser is showing it has already expired.
  23. What are next steps here, is this an internal discussion? I've provided a work around to my users using a script to install the dependancies but as stated this is not ideal. Let me know how I can help.
  24. With the release of unraid 6.10-rc2 I took a leap and upgraded my server and was able to determine the issue. It seems with 6.10 there are a bunch of dependancies that have been removed from unraid as they aren't used. I've mentioned this in the unraid 6.10-rc3 forum post and it seems a further conversation is really needed around plugin dependency management. I'll bump this again with them to see how I/we can go about fixing this without me just added all these additional system libraries to this plugin. For now on my system I am utilizing the User Scripts plugin to execute the following script when the system starts up, which then gets the images working again. The other thing I can do, is look into is parsing the text data that is available and creating my own images instead of vnstati, or just provide the table output. Anyways, here is the script: #!/bin/bash wget https://slackware.uk/slackware/slackware64-14.2/slackware64/l/gd-2.2.1-x86_64-1.txz upgradepkg --install-new gd-2.2.1-x86_64-1.txz wget https://slackware.uk/slackware/slackware64-14.2/slackware64/x/fontconfig-2.11.1-x86_64-2.txz upgradepkg --install-new fontconfig-2.11.1-x86_64-2.txz wget https://slackware.uk/slackware/slackware64-14.2/slackware64/l/harfbuzz-1.2.7-x86_64-1.txz upgradepkg --install-new harfbuzz-1.2.7-x86_64-1.txz wget https://slackware.uk/slackware/slackware64-14.2/slackware64/l/freetype-2.6.3-x86_64-1.txz upgradepkg --install-new freetype-2.6.3-x86_64-3_slack14.2.txz wget https://slackware.uk/slackware/slackware64-14.2/slackware64/x/libXpm-3.5.11-x86_64-2.txz upgradepkg --install-new libXpm-3.5.11-x86_64-2.txz wget https://slackware.uk/slackware/slackware64-14.2/slackware64/x/libX11-1.6.3-x86_64-2.txz upgradepkg --install-new libX11-1.6.3-x86_64-2.txz wget https://slackware.uk/slackware/slackware64-14.2/slackware64/x/libxcb-1.11.1-x86_64-1.txz upgradepkg --install-new libxcb-1.11.1-x86_64-1.txz wget https://slackware.uk/slackware/slackware64-14.2/slackware64/x/libXau-1.0.8-x86_64-2.txz upgradepkg --install-new libXau-1.0.8-x86_64-2.txz wget https://slackware.uk/slackware/slackware64-14.2/slackware64/x/libXdmcp-1.1.2-x86_64-2.txz upgradepkg --install-new libXdmcp-1.1.2-x86_64-2.txz
  25. Yeah you are correct, it definitely becomes a bit of stepping on each others toes. I was able to get things working on my local machine, but it seems there are a bunch of libraries that are no longer available in 6.10 that were previously available in 6.9. Here is the full list of packages I needed to install to get things working locally againon 6.10-rc1: https://slackware.uk/slackware/slackware64-14.2/slackware64/l/gd-2.2.1-x86_64-1.txz https://slackware.uk/slackware/slackware64-14.2/slackware64/x/fontconfig-2.11.1-x86_64-2.txz https://slackware.uk/slackware/slackware64-14.2/slackware64/l/harfbuzz-1.2.7-x86_64-1.txz https://slackware.uk/slackware/slackware64-14.2/patches/packages/freetype-2.6.3-x86_64-3_slack14.2.txz https://slackware.uk/slackware/slackware64-14.2/slackware64/x/libXpm-3.5.11-x86_64-2.txz https://slackware.uk/slackware/slackware64-14.2/slackware64/x/libX11-1.6.3-x86_64-2.txz https://slackware.uk/slackware/slackware64-14.2/slackware64/x/libxcb-1.11.1-x86_64-1.txz https://slackware.uk/slackware/slackware64-14.2/slackware64/x/libXau-1.0.8-x86_64-2.txz