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.

KDY

Members
  • Joined

  • Last visited

Solutions

  1. KDY's post in Can not access web page (500 Internal Server Error) was marked as the answer   
    I found why this error occurred,
    This happened entirely because of my mistake.
    I use a plugin called user.script.

    It's a simple file-moving script like the one below.

    #!/bin/bash shopt -s nullglob SRC="/mnt/cache/recorders" DST="/mnt/user/backup/recorders" for cam in cam1 cam2 cam3 cam4; do files=( $(ls -1 "$SRC"/${cam}_*.mp4 2>/dev/null | sort) ) count=${#files[@]} if (( count > 1 )); then for ((i=0; i<count-1; i++)); do f="${files[$i]}" mv "$f" "$DST/" done fi done
    At first glance, it doesn’t seem problematic, but if the SRC directory doesn’t actually exist, this becomes a serious issue.
    I think the ls command is pointing to /usr/local/emhttp/ and moving those files to DST.
    This wasn’t a problem with user.script or unraid, it was my fault for writing dumb code.

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.