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.

sylvio2000

Members
  • Joined

  • Last visited

  1. An Archive viewer woud be good. Without a viewer how do look for and search inside your pdf files? I thought that is the purpose of PRPDF to search inside my documents 😄
  2. Thanks. But what I dont understand: At what point the document gets ocr`ed? I now moved the document manually in the archive folder but nothing happens. After I moved the document it hides from the main screen as if it never existed. But how can I work with it now? I cant even use the search field. It finds nothing.
  3. I dont understand how the app works, is there a guide? What I have done so far: I installed PRPDF in unraid and set the import path and the document repository: Now I place a pdf in .../Dokumenten-Import (First question: Should now something work automatically? Do I have to wait for ocr or anything?) Ok, so I click on "Renew/Import new scan" and my pdf appears and gets instantly moved to a folder .../Dokumenten-Import/unknown ?. But what now? Should it now automatically ocr my document? Now I click on "OCR-scan and set keywords for autoscan". I set the keyword "Zahnarzt", the filename "Zahnarzt.pdf" and click on the checkmark. I dont know what should happen now, but it seems that nothing happened? I only get back to the startscreen of prpdf. What am I doing wrong?
  4. Need help with .yml Hi. I am using the code for my paperless_ngx.yml from this guide within portainer (on unraid of course): https://mariushosting.com/how-to-install-paperless-ngx-on-your-synology-nas-with-mariadb/ It works so far, but I am unsure if everything is correct within the code, because some lines are red, although I get no error messages in portainer. Maybe somebody can help me getting a clean code? services: redis: image: redis:8 command: - /bin/sh - -c - redis-server --requirepass redispass container_name: PaperlessNGX-REDIS hostname: paper-redis mem_limit: 512m mem_reservation: 256m cpu_shares: 768 security_opt: - no-new-privileges:true read_only: true user: 99:100 healthcheck: test: ["CMD-SHELL", "redis-cli ping || exit 1"] volumes: - /mnt/user/appdata/paperlessngx/redis:/data:rw environment: TZ: Europe/Berlin restart: on-failure:5 db: image: mariadb:11.4-noble #LTS Long Time Support Until May 29, 2029. container_name: PaperlessNGX-DB security_opt: - no-new-privileges:false hostname: paper-db environment: MYSQL_DATABASE: paperless MYSQL_USER: paperlessuser MYSQL_PASSWORD: paperlesspass MYSQL_ROOT_PASSWORD: rootpass TZ: Europe/Berlin volumes: - /mnt/user/appdata/paperlessngx/db:/var/lib/mysql:rw restart: on-failure:5 phpmyadmin: image: phpmyadmin hostname: paperlessngx-phpmyadmin healthcheck: test: curl -f http://localhost:80/ || exit 1 container_name: PaperlessNGX-phpMyAdmin ports: - 2980:80 environment: PMA_HOST: paper-db PMA_PORT: 3306 restart: on-failure:5 gotenberg: image: gotenberg/gotenberg:latest container_name: PaperlessNGX-GOTENBERG hostname: gotenberg security_opt: - no-new-privileges:true user: 99:100 command: - "gotenberg" - "--chromium-disable-javascript=true" - "--chromium-allow-list=file:///tmp/.*" - "--api-timeout=300s" restart: on-failure:5 tika: image: ghcr.io/paperless-ngx/tika:latest container_name: PaperlessNGX-TIKA hostname: tika security_opt: - no-new-privileges:true user: 99:100 restart: on-failure:5 paperless: image: ghcr.io/paperless-ngx/paperless-ngx:latest container_name: PaperlessNGX hostname: paperless-ngx mem_limit: 6g cpu_shares: 1024 security_opt: - no-new-privileges:true healthcheck: test: ["CMD", "curl", "-fs", "-S", "--max-time", "2", "http://localhost:8000"] interval: 30s timeout: 10s retries: 5 ports: - 8777:8000 volumes: - /mnt/user/appdata/paperlessngx/data:/usr/src/paperless/data - /mnt/user/Dokumenten-Archiv/media:/usr/src/paperless/media - /mnt/user/appdata/paperlessngx/export:/usr/src/paperless/export - /mnt/user/Dokumenten-Archiv/consume:/usr/src/paperless/consume - /mnt/user/appdata/paperlessngx/trash:/usr/src/paperless/trash environment: PAPERLESS_REDIS: redis://:redispass@paper-redis:6379 PAPERLESS_DBENGINE: mariadb PAPERLESS_DBHOST: paper-db PAPERLESS_DBNAME: paperless PAPERLESS_DBUSER: paperlessuser PAPERLESS_DBPASS: paperlesspass PAPERLESS_EMPTY_TRASH_DIR: ../trash PAPERLESS_FILENAME_FORMAT: '{{ created_year }}/{{ correspondent }}/{{ document_type }}/{{ title }}' PAPERLESS_OCR_ROTATE_PAGES_THRESHOLD: 6 PAPERLESS_TASK_WORKERS: 1 USERMAP_UID: 99 USERMAP_GID: 100 PAPERLESS_SECRET_KEY: dOxZYTTZgXKMHkqLBIQVImayQXAVWdzGBPuFJKggzcgvgPJPXpWzqzKaUOIOGGIr PAPERLESS_TIME_ZONE: Europe/Berlin PAPERLESS_ADMIN_USER: superuser PAPERLESS_ADMIN_PASSWORD: AntjeSylvio11 PAPERLESS_URL: https://paperlessngx.yourname.synology.me PAPERLESS_CSRF_TRUSTED_ORIGINS: https://paperlessngx.yourname.synology.me PAPERLESS_OCR_LANGUAGE: deu+eng PAPERLESS_TIKA_ENABLED: 1 PAPERLESS_TIKA_GOTENBERG_ENDPOINT: http://gotenberg:3000 PAPERLESS_TIKA_ENDPOINT: http://tika:9998 restart: on-failure:5 depends_on: db: condition: service_started redis: condition: service_healthy tika: condition: service_started gotenberg: condition: service_started
  5. I really like ocrmypdf, but how can I search for documents by usings its content? I have a lot of ocr´ed files but cant work with it.
  6. How is it possible to change the language to german? My settings look like this and I already restarted the docker app: { "port": 80, "debug": "off", "lang": "deu", "updatetime": 1800, "append_date": true, "append_random": true, "enable_update_flag": true, "index": { "Foldername/Filename": [ "Keyword1" ], "Foldername2/Filename": [ "Keyword1", "Keyword2", "Keyword3" ] } }
  7. Hey. This app seems to be really nice. But before I try it out, is it further maintained or already eol? ;) Because the last post in this forum is more than 2 years old.
  8. I am no expert in image editing, but maybe somebody finds it useful for the ugreen dxp2800: In Unraid you cant see those fuzzy edges on this small picture Edit: I added the Ugreen DXP 4800Plus
  9. Hi. I tried to add another "Path" to my plex Container (+Add another Path, Port, Variable, Label or Device). I made a mistake when adding this path, because the container already existed. Of course I did not recognized this mistake and clicked apply. After that I got the result, with an error of a duplicate mount point. BUT now the docker container got stopped an uninstalled!? This must be a bug. I tried to recreate this behaviour with my emby container and got the same result:
  10. Which "external storage" app do I have to install to mount unraid shares? There are 4 apps: 1. external storage backend for dropbox: Server version 19.0 or lower is required. 2. external storage support for Google Drive: Server version 16.0 or lower is required. 3. external storage: OneDrive: Server version 21.0 or lower is required. 4. external storage: Swarm: Es ist ein Fehler bei der Anfrage aufgetreten. Es kann nicht fortgefahren werden. Client error: `GET https://github.com/MetaProvide/nextcloud-swarm-plugin/releases/download/v0.4.1/files_external_ethswarm.tar.gz` resulted in a `404 Not Found` response: Not Found
  11. Diese Antwort verwirrt mich jetzt noch mehr. Welchen Container genau meinst du jetzt? FreeFileSync? Dieser Docker steht auf Autostart. Und ich habe ihn auch nach dem Mount neu gestartet
  12. Habe unraid mal komplett neu gestartet und dann Folgendes ins Terminal eingegeben: ls -la /mnt/addons/gdrive Es werden alle Ordner aufgelistet, so wie es sein soll. /mnt/addons = root read/write - read only - read only /mnt/addons/gdrive = nobody read/write - read/write - read only Bei addons habe ich mal auf 777 gestellt und auch den FreeFileSync Docker neugestartet, aber mir wird immer noch kein Inhalt angezeigt. Bei gdrive kann ich keine Berechtigungen ändern... EDIT: 2. verstehe ich nicht ganz
  13. Mehr hab ich nicht verändert
  14. OK, hier gibt es ein paar mehr Infos. unassigned devices ist nicht installiert. Mein User script sieht folgendermaßen aus: mkdir -p /mnt/addons/gdrive chown nobody:users /mnt/addons/gdrive rclone mount --config /boot/config/plugins/rclone/.rclone.conf --daemon --default-permissions --gid 100 --uid 99 --umask 002 GoogleDrive:/ /mnt/addons/gdrive FreeFileSync zeigt mir keinen Inhalt an.
  15. Also /mnt/addons war standardmäßig nicht vorhanden. Aber es ist doch ein eigener Mount, den ich mit rclone erstelle, oder nicht? Brauche ich dann nicht doch das unassigned devices Plugin? Das sind beide Docker-Container. Ja, die Verzeichnisse sind gemappt

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.