Sounds like someone set system_init_done to false. You can double check by using zammad run rails r "Setting.get('system_init_done')"
system_init_done
false
zammad run rails r "Setting.get('system_init_done')"
If it is indeed false, you may want to investivate deeper and set it to true. zammad run rails r "Setting.set('system_init_done')"
zammad run rails r "Setting.set('system_init_done')"
This doesn’t happen “on it’s own”.
Hi, indeed it was set to false. Set it using Setting.set('system_init_done', 'true') and in a rails console zammad run rails c. and then login window reappeared and I was able to login just fine. Not sure though what caused this in the first place.
Setting.set('system_init_done', 'true')
zammad run rails c
Best, Martin
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.