Stefan Linke
Stefan Linke
I think the proper fix would be to change the `configure.ac` for autotools like this (instead of editing the generated Makefile) https://github.com/particleflux/overlay/blob/master/app-misc/bitwise/files/bitwise-0.43-tinfo.patch ```diff diff --git a/configure.ac b/configure.ac index 3e4ebde..75a41ac 100644...
The log output of apache with the qualified domain name is fine. The 500 is not. Can you check `storage/logs/laravel.log` in webroot? It should have more information about the error....
I'm not sure how exactly docker on synology works, tho you might want to try a `docker exec php artisan migrate`. Usually those migration scripts take care of the database...
This has already been fixed - see #5936 It's just not released yet :)
I don't think this is a bug - since you manually edited the DB to "disable" MFA. Deactivating and reactivating works fine via UI (tested in firefox 91)
Hu, nvm, the code does the same for disabling MFA https://github.com/monicahq/monica/blob/main/app/Http/Controllers/Settings/MultiFAController.php#L112-L115
Where? * Hosted version (app.monicahq.com)? * Self hosted version? (docker? heroku? manually installed?) Did you restart the environment in between?
This is likely some issue with your setup. * Have you tried reproducing it with another new account? * Which version? (I guess 3.7.0?) * Anything in logs? (`storage/logs/`)
Did you by any chance press F5 in-between filling the form and this error? Or change some ad- or script-blocker settings?
The constraint identifiers have a length limit in mysql/mariadb: https://dev.mysql.com/doc/refman/8.0/en/identifier-length.html - which seems to be 64 characters, whereas the given identifier is 70 chars long. This could be fixed by...