-
[Plugin] Mover Tuning
Do you mean the "Validate input filenames to prevent attacks" option under "Settings", "User Preferences", "Scheduler" , "Mover Tuning", "Mover Tuning - Plugin Settings"? 😵💫🤯 (Clicking on the message got me there instantly...)
-
[Plugin] Mover Tuning
I would like to get some advise on the following. I get a lot of these messages since I installed Mover Tuning: <my_server_name>: Unraid Status Mover Tuning Notification 1745051921 warning Error: Invalid filename path: 'media/<folder>/<folder>/<folder>/<filename>.mp4:Zone.Identifier' (I redacted folders and filename) It seems it has something to do with these Zone.Identifier files that Windows 11 adds. I actually do not know why I need those, since I already know where they came from. How to go on about this? Disable it in Windows 11 that they are no longer are created, or is it recommended to program Mover Tuner to ignore these files or disable the warnings, which I get like a thousand times a day?
-
Ymetro started following WebUI cursor info tags placement and behaviour suggestion
-
WebUI cursor info tags placement and behaviour suggestion
Maybe I'm nitpicking, but I have grown fond of Unraid and like to contribute to make it as user-friendly as possible. I noticed the info tags being obstructed by the mouse cursor. Those little info boxes that appear when hovering. For example: I suggest placing the info tag to the upper left corner of the active cursor part, because most mouse cursors are pointing to the upper left. I also noticed the info tag (whatever it is being called) is expanding the webpage, a horizontal scrollbar appears, but the shown info is being cut off, and unreachable, like shown below: Is it possible to make the info tag respect the webpages borders and shift to stay inside the webpage window? Like:
-
Nextcloud Maintenance Mode ON after Docker update
That indeed should work as when I enter the container with bash, with command: docker exec -it Nextcloud bash it opens the prompt in /var/www/html I mentioned in the OP. So all seems well. I marked your comment as a solution, because it is quick. My story, on the other hand, was more intended for the ones who have to dive in a little deeper, for fixing Nextcloud not getting out of Maintenance Mode.
-
Nextcloud Maintenance Mode ON after Docker update
Hm. Strange. I had expected: /var/www/html That's where occ resides.
-
Nextcloud Maintenance Mode ON after Docker update
For more information on how I got Nextcloud and OnlyOffice set up: Nextcloud app from knex666 and the OnlyOfficeDocumentServer from Siwat2545 along with MariaDB-Official from mgutt.
-
Nextcloud Maintenance Mode ON after Docker update
Not sure if we are both looking at the same spot. Please do a pwd as well, and post the results.
-
Nextcloud Maintenance Mode ON after Docker update
Mine gives: 3rdparty COPYING composer.json config core custom_apps dist index.php nextcloud-init-sync.lock ocs package-lock.json public.php resources status.php version.php AUTHORS apps composer.lock console.php cron.php data index.html lib occ ocs-provider package.json remote.php robots.txt themes So the OCC file is there... Maybe "ls -l" to check if the right owner is appointed and if it is executable. Again, my result gives: drwxr-xr-x 1 99 users 854 Apr 25 23:24 3rdparty -rw-r--r-- 1 99 users 23796 Apr 25 23:24 AUTHORS -rw-r--r-- 1 99 users 34520 Apr 25 23:24 COPYING drwxr-xr-x 1 99 users 1218 Apr 25 23:24 apps -rw-r--r-- 1 99 users 2079 Apr 25 23:24 composer.json -rw-r--r-- 1 99 users 3140 Apr 25 23:24 composer.lock drwxr-xr-x 1 99 users 398 Dec 25 10:00 config -rw-r--r-- 1 99 users 4726 Apr 25 23:24 console.php drwxr-xr-x 1 99 users 526 Apr 25 23:24 core -rw-r--r-- 1 99 users 7900 Apr 25 23:24 cron.php drwxr-xr-x 1 99 users 94 Apr 25 23:24 custom_apps drwxrwx--- 1 99 users 342 Apr 20 2023 data drwxr-xr-x 1 99 users 13938 Apr 25 23:24 dist -rw-r--r-- 1 99 users 156 Apr 25 23:24 index.html -rw-r--r-- 1 99 users 4564 Apr 25 23:24 index.php drwxr-xr-x 1 99 users 126 Apr 25 23:24 lib -rw-r--r-- 1 99 users 0 Apr 25 23:24 nextcloud-init-sync.lock -rwxr-xr-x 1 99 users 283 Apr 25 23:24 occ drwxr-xr-x 1 99 users 50 Apr 25 23:24 ocs drwxr-xr-x 1 99 users 18 Apr 25 23:24 ocs-provider -rw-r--r-- 1 99 users 1074100 Apr 25 23:24 package-lock.json -rw-r--r-- 1 99 users 7032 Apr 25 23:24 package.json -rw-r--r-- 1 99 users 3759 Apr 25 23:24 public.php -rw-r--r-- 1 99 users 5597 Apr 25 23:24 remote.php drwxr-xr-x 1 99 users 158 Apr 25 23:24 resources -rw-r--r-- 1 99 users 26 Apr 25 23:24 robots.txt -rw-r--r-- 1 99 users 2523 Apr 25 23:24 status.php drwxr-xr-x 1 99 users 26 Feb 4 2023 themes -rw-r--r-- 1 99 users 384 Apr 25 23:24 version.php Compare this to what you have, or post it here. Otherwise, this might help: https://help.nextcloud.com/t/could-not-open-input-file-occ/12604/3
-
Nextcloud Maintenance Mode ON after Docker update
What does the "ls" command give when entering the console from the Docker Container tab?
-
Nextcloud Maintenance Mode ON after Docker update
Did you open the console by clicking the icon of Nextcloud and select "Console" in the "Docker Containers" tab of Unraid?
-
Nextcloud Maintenance Mode ON after Docker update
😅Ah, now I see why you needed this: I also needed my own info for the latest Docker update to version: 28.0.2.5, so let me show the steps: - Just click on the Nextcloud icon on the Docker page - Click "Console" in that menu - first, before you use a command, learn what it can do and what options it has with: php ./occ --help - then use: php ./occ status to check what is going on. Probably, the "maintenance:" and "needsDbUpgrade:" lines have the status "true" - than do: php ./occ update --all and some package is being mentioned for upgrading - it was the Deck app in my case - and after that do a: php ./occ upgrade just like an "apt update" and "apt upgrade" in a Linux CLI - after that, turn off the maintenance mode with: php ./occ maintenance:mode --off The prompt will mention that Maintenance mode is disabled. - you can check the status again with: php ./occ status All should be fine, and the web interface should work like advertised.
-
Nextcloud Maintenance Mode ON after Docker update
😁👍
-
Shrink Array question
Thanks for your answer @itimpi! Learning all the time. It might be wise have to use nohup or screen because of its long process then won't get stopped when the PC one is logged in from crashes or anything. I stopped the dd process with Ctrl + C and created a screen session for it just to be sure.
-
Shrink Array question
I am also busy with clearing a disk (Disk 5 in the array) for removal without having to rebuild parity. Disk 5 is being cleared by the dd command, but does it matter that the parity is updated in the meantime? Does it affect clearing speed or something? Or strain the system unnecessary?
-
Nextcloud Maintenance Mode ON after Docker update
I might should have mentioned a "Docker image upgrade of Nextcloud" and an "Nextcloud app update" in the OP title for better perception... But it seems one cannot edit an OP title, AFAIK. Also I am also not quite sure if this topic is in its right forum folder. "8 months later...": Hey: I seemed to edit the title! Nice.
Ymetro
Members
-
Joined
-
Last visited