Everything posted by elibosley
-
Unraid Connect plugin dramatically slowing webgui performance
Incredible! Glad to hear it. I think this new release solved many of our performance issues. So happy we got you sorted out!
-
Cannot update to the latest version of the plugin
Really glad to hear this. I would suggest that anyone reading this thread refer to the solution above for a fix, or just utilize bash as their default shell.
-
Unable to install My Server plugin
That prior response is no longer the case. We no longer symlink the API in a way that would break zsh but not bash. I'm not sure why the issue still occurs and will need some community support to figure out what process exactly is failing. Here is the updated solution that is confirmed working: https://forums.unraid.net/topic/191889-cannot-update-to-the-latest-version-of-the-plugin/#findComment-1568640
-
Cannot update to the latest version of the plugin
I think that the way you're setting up zsh is likely breaking a lot of boot scripts (not just ours). TL;DR Yes, your line can and will break Unraid plugin installs by hijacking the login shell. Fix it by guarding with -t 1 to only exec Zsh in actual interactive terminals. ✅ Solution: Detect interactive terminal onlyModify the logic in .bash_profile to only launch Zsh if it's an interactive terminal (i.e., not from a script or system process): Replace: echo "if [ -d /mnt/user/appdata/zsh/.oh-my-zsh ]; then if [ -f /bin/zsh ]; then /bin/zsh; exit; fi fi" >> /root/.bash_profile With something safer: echo 'if [[ -t 1 && -f /bin/zsh && -d /mnt/user/appdata/zsh/.oh-my-zsh ]]; then exec /bin/zsh; fi' >> /root/.bash_profile Explanation: [[ -t 1 ]]: Only true if the shell has a terminal attached (i.e. interactive session) exec /bin/zsh: Replaces the shell process only in interactive cases This ensures: Normal user terminals get Zsh Plugin scripts, cron jobs, and Unraid boot/install logic remain unaffected Note: I have NOT tested this logic and using Zsh like this (as default shell) is entirely outside of Unraid supported functionality. You will continue to have issues doing this in the future.
-
Cannot update to the latest version of the plugin
Hi, we want to solve this for you but this is also an unsupported use case. Please provide the following. execution result of ls -al /bin/sh The guide followed to install Zsh on Unraid Thank you, this will help us further understand and fix this use case.
-
Dashboard page stuck at loading
It looks possible that your Connect client isn't installed. Please reinstall the plugin if possible and let me know if you see more options in that menu (flash backup, etc.)
-
Timeout while waiting for setup device command
Awesome! I am happy to hear it. Please let us know if you see any repeated behaviors.
-
Unraid Mobile App - unConnect
@S3ppo any updates on these asks? I just tried this on my server and it's absolutely amazing. Would love to see community support and buildout of this application.
-
Cannot update to the latest version of the plugin
Please send the response from the prior DEBUG statements in the install, that may help us get to the bottom of this.
-
Cannot update to the latest version of the plugin
Hello! Please try again with our latest update: https://forums.unraid.net/topic/138392-unraid-connect-plugin-announcements/#findComment-1567649 This solves many of these lifecycle issues (and adds extremely critical debugging) that should allow us to troubleshoot your issues if it doesn't directly solve them.
-
Unraid Connect Plugin Announcements
📦 Unraid API v4.10.0 (2025-07-15)🔗 View full diff on GitHub ✨ New FeaturesTrial Extension: Users can now extend their trial within 5 days of expiration #1490 – f34a33b 🐛 Bug FixesDelay nginx:reload file modification effect by 10 seconds #1512 – af33e99 Update all non-major dependencies #1489 – 53b05eb Avoid crash if emhttp state configs are missing #1514 – 1a7d35d Improve DNS resolution robustness for backup server (My Servers) #1518 – eecd9b1 Reduce over-eager cloud queries from web components #1506 – 074370c Replace myservers.cfg reads in UpdateFlashBackup.php #1517 – 441e180 Remove short-circuit in rc.unraid-api if plugin config dir is missing #1515 – 29dcb7d
-
Cannot activate Flash Backup although logged in
@luve04 Please update your Connect plugin to the latest version. We've just shipped a release that should fix this issue.
-
Cannot activate Flash Backup although logged in
We’ll be shipping an update this week with a resolution.
-
usb issues
Please re-test with the latest version of Unraid Connect. We’ve updated the internal USB listing logic and believe this should be resolved.
-
Download Issues?
Is it possible your server is out of memory? Sometimes if you run out of memory or swap downloads start failing
-
Cannot update to the latest version of the plugin
Thank you for flagging @Mantene . We'll investigate further within the team and see what we can figure out. I'm not sure why you're having many issues with upgrades, I'm really hoping we can solve this for you soon!
-
Flash backup not working after connect update
We'll do one more patch today to fix this intermittent connectivity for flash backup.
-
4.9.1 Update issue
We'll issue one more hotfix to solve this and the flash backup issue today. Sorry about the repeated releases.
-
Unable to get server header in Connect
Thank you for flagging this. I really appreciate you bringing to our attention!
-
4.9.1 Update issue
We've published a hotfix to fix this issue! Thank you for reporting this.
-
Flash backup not working after connect update
We've published a hotfix to solve this issue.
-
Unraid Connect Plugin Announcements
We've published a hotfix for the 4.9.1 release to fix common issues users were experiencing. ## [4.9.2](https://github.com/unraid/api/compare/v4.9.1...v4.9.2) (2025-07-09) ### Bug Fixes * invalid configs no longer crash API ([#1491](https://github.com/unraid/api/issues/1491)) ([6bf3f77](https://github.com/unraid/api/commit/6bf3f776380edeff5133517e6aca223556e30144)) * invalid state for unraid plugin ([#1492](https://github.com/unraid/api/issues/1492)) ([39b8f45](https://github.com/unraid/api/commit/39b8f453da23793ef51f8e7f7196370aada8c5aa)) * release note escaping ([5b6bcb6](https://github.com/unraid/api/commit/5b6bcb6043a5269bff4dc28714d787a5a3f07e22))
-
Flash backup not working after connect update
This will be fixed by a hotfix later today.
-
4.9.1 Update issue
This issue will be fixed in a hotfix release today. We've pulled 4.9.1 for now and will provide a fix shortly.
-
Connect Plugin Shows Backup Error
Thank you for flagging this. We'll be releasing a hotfix today that should solve these issues.