ICDeadPpl

Members
  • Posts

    224
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by ICDeadPpl

  1. There's a OSX Serial Generator on Github which has a lot of options, I haven't tried it out yet.
  2. You can create a custom script and put it in the docker's '/config/custom-cont-init.d' folder. The script will be executed every time the docker is started/restarted.
  3. Try MESSAGE=`rsync -av --delete --ignore-errors -e` /usr/local/emhttp/webGui/scripts/notify -i normal -s "Test" -d "Test" -m "$MESSAGE"
  4. You could call '/usr/local/emhttp/webGui/scripts/notify' from your script, and have the message include the output of the rsync job. The rsync output could be temporarily stored as a file, piped argument, named pipe or whatever. Run the command '/usr/local/emhttp/webGui/scripts/notify' once without any arguments to see which there are for you to use. You may want to check the notifications in Unradid Web UI "Settings/Notifications settings" so they are set to send email.
  5. Put 'bash' in front of the command. Like 'bash /boot/config/plugins/user.scripts/scripts/backup_onedrive/script'
  6. I have a IBM ServeRAID M1015 flashed with LSI firmware in IT mode, but it doesn't get detected on my motherboard (MSI Z270 Gaming Pro Carbon) with a Core i7 7700K CPU. I have tried every pcie slot on the motherboard, but with no success. I tried with putting the card in my desktop PC (an AMD Ryzen 5900X system) and it works all right there. Is there anything I can do to get it working on the Intel system, or do I have to buy some other motherboard/CPU combo? 'lspci' gives this output, so the card is not detected at all:
  7. There's a typo on the "Summary of New Features" page. 'config/modpobe.d' should be 'config/modprobe.d'.
  8. I replaced these lines in the '/mnt/cache/appdata/nextcloud/nginx/site-confs/default' file. (Adjust path to your appdata path, if it's different) location = /.well-known/carddav { return 301 $scheme://$host:$server_port/remote.php/dav; } location = /.well-known/caldav { return 301 $scheme://$host:$server_port/remote.php/dav; } location = /.well-known/webfinger { return 301 $scheme://$host:$server_port/public.php?service=webfinger; } location = /.well-known/host-meta { return 301 $scheme://$host:$server_port/public.php?service=host-meta; } location = /.well-known/host-meta.json { return 301 $scheme://$host:$server_port/public.php?service=host-meta-json; } with these lines # Make a regex exception for `/.well-known` so that clients can still # access it despite the existence of the regex rule # `location ~ /(\.|autotest|...)` which would otherwise handle requests # for `/.well-known`. location ^~ /.well-known { # The following 6 rules are borrowed from `.htaccess` location = /.well-known/carddav { return 301 /remote.php/dav/; } location = /.well-known/caldav { return 301 /remote.php/dav/; } # Anything else is dynamically handled by Nextcloud location ^~ /.well-known { return 301 /index.php$uri; } try_files $uri $uri/ =404; } Then I restarted the Nextcloud docker and the error was gone.
  9. Try with opening the Nextcloud console (click on Nextcloud icon on Docker page) and run this command: sudo -u abc php7 /config/www/nextcloud/occ maintenance:mode --off
  10. Have you tried to add the (sub)domain name to your hosts file? (On Windows 10 it's located at "C:\Windows\System32\drivers\etc\hosts")
  11. Request: newt It includes 'whiptail', which is great for making interactive scripts with menus, checkboxes, etc.
  12. You can make a folder called "custom-cont-init.d" in the /config folder location and put a script in there. It gets executed during start/restart of the container. This applies to Linuxserver containers only, that I know of. Read more here, under "Custom Scripts".
  13. Now I just want to get rid of multiples of the same topic in my "Content I follow" Activity Feed.
  14. I found the setting, it has to be "Take me to comments I haven't read"
  15. Maybe the new theme is trying to fetch external resource files, and times out?
  16. Just to clarify, other websites and forums load just fine. Equally slow on Chrome and Firefox on WIndows 10.
  17. Is it just me, or are the pages loading very slowly for anybody else? I'm talking about waiting 3-20 seconds for a page to load.
  18. I had the same problem, didn't get a handshake from either my PC or my Android. I don't remember why, but one day I decided to try another port in the the "local endpoint" and also my router port forwarding setting. It just started to work. I had earlier successfully used the default port, but one day it just stopped working. I went for a long time before I got to change the port, I used my router's OpenVPN instead. Weird.
  19. Is it possible to migrate from linuxserver/papermerge to this version?
  20. In the "Move Array Only Shares" script, the message "All cache-only shares already only existed on the cache drive" is exactly the same as in the "Move Cache Only Shares". Maybe it should say "All array-only shares already only existed on the array"? The same with the message ""All shares set to be cache-only have now had their files previously existing on the array to now be on the cache drive", that should be "All shares set to be array-only have now had their files previously existing on the cache drive to now be on the array"
  21. Oh that I wish that this post got noticed by Limetech:
  22. Really nice! I've spent too much time switching between Downloads and History layouts anyway! 😀👍
  23. Also, a "Cancel" or "Close" button the the same pop-up would be nice. Now I have to reload the whole page to cancel the process.
  24. Just a minor request for convenience: When adding a remote share it would be nice to have the text box selected/active in the pop-up, so one wouldn't need to click in every text box to fill in IP, username and password.