shalafi

Members
  • Posts

    10
  • Joined

  • Last visited

Everything posted by shalafi

  1. I just set the boot order for the USB devices, this time they got detected correctly, both of them. Lets hope it sticks 🎅
  2. Have installed Home Assistant as a VM with two devices connected via USB. A ZWave stick (works flawless) and a RFXTRX USB 'controller' (not sure of what to call it 😁) I have a problem with the RFXTRX, they are both passed through to the VM and all of a sudden I lost the RFXTRX (Z-Wave no problem), I checked that both were passed through and decided to reinstall and re-add all 433MHz devices, worked for a day and a reboot and then it dissapeared again. Any ideas about what I'm doing wrong, in my world the system should survice an Unraid reboot and still be able to connect ...
  3. I haven't tried this, but it might work for you "Dynamix schedules" plugin. Schedules is a front-end utility for the built-in hourly, daily, weekly and monthly schedules. It allows the user to alter the schedule execution times using the GUI. See Settings -> Scheduler -> Fixed Schedules. "https://forums.unraid.net/topic/34889-dynamix-v6-plugins/" //Jörgen
  4. I found the error 😃 Time difference on my unraid server, had to disable NTP and set time manually. Now everything words!
  5. It was in the container I looked for the missing log. Anyway, tried the export/import and that didn't change anything. Since the only thing that didn't work after the migration was this plugin I removed it from my 13 sites for the time being 🙂 Trying to understand the permission issue.... The database has full permissions, the files/folders has either www-data or root... I'll do some more thinking....
  6. I tried setting this in wp-config.php and wp-config-docker.php: define( 'WP_DEBUG', !!getenv_docker('WORDPRESS_DEBUG', 'true') ); define( 'WP_DEBUG_LOG', '/var/www/html/wp-errors.log' ); But no debug log is created in the dockers /var/www/html folder Did some more testing, I can change and save other information in the user profile but the TOTP will not save.. Plugin folder (and files) has correct user/group
  7. No, I haven't. Shouldnt be files permission And the database user has all rights fot it's database Is there other permission to consider?
  8. Strange problem after wordpress import. I have just finished importing 13 existing wordpress installations into Unraid, each in a separate docker and separate databases. everything works almost perfect. excelpt TOTP. All sites is secured with TOTP for login, and I can't login with my generated code. I renamed the plugin folder so that I could log in and after I logged in I changed the folder back and reset the TOTP code... Then I created a new code and set TOTP as enables and primary. The problem is that the new code is is not saved and setting TOTP as enabled and primary is not saved either so when I log out and try to log in again I only need username/password. Any ideas out here? Is there something special to consider when using "old" wordpress installations like this? All wordpresses was at latest versions, the import process was like this: 1. Create database and wordpress docker in Unraid 2. dump DB at old server and import it to new DB in Unraid MariaDB 3. copy wp-content folder from old installation to docker installation Like this: Create wordpress docker in unraid Create database and user mysqldump -h oldserver -u root -p <db> > <db>.sql mysql -h unraidserver -u root -p <db> < <db>.sql scp -pr /var/www/<site>/wp-content/* unraidserver:/mnt/user/appdata/wordpress/<site>/wp-content/.