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.

elibosley

Administrators
  • Joined

  • Last visited

Everything posted by elibosley

  1. Incredible! Glad to hear it. I think this new release solved many of our performance issues. So happy we got you sorted out!
  2. 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.
  3. 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
  4. 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.
  5. 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.
  6. 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.)
  7. Awesome! I am happy to hear it. Please let us know if you see any repeated behaviors.
  8. @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.
  9. Please send the response from the prior DEBUG statements in the install, that may help us get to the bottom of this.
  10. 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.
  11. 📦 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
  12. @luve04 Please update your Connect plugin to the latest version. We've just shipped a release that should fix this issue.
  13. We’ll be shipping an update this week with a resolution.
  14. Please re-test with the latest version of Unraid Connect. We’ve updated the internal USB listing logic and believe this should be resolved.
  15. Is it possible your server is out of memory? Sometimes if you run out of memory or swap downloads start failing
  16. 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!
  17. We'll do one more patch today to fix this intermittent connectivity for flash backup.
  18. We'll issue one more hotfix to solve this and the flash backup issue today. Sorry about the repeated releases.
  19. Thank you for flagging this. I really appreciate you bringing to our attention!
  20. We've published a hotfix to fix this issue! Thank you for reporting this.
  21. We've published a hotfix to solve this issue.
  22. 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))
  23. This will be fixed by a hotfix later today.
  24. This issue will be fixed in a hotfix release today. We've pulled 4.9.1 for now and will provide a fix shortly.
  25. Thank you for flagging this. We'll be releasing a hotfix today that should solve these issues.

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.