I really dislike the way it keeps giving 'oops, something went wrong!' errors if I don't visit the page often enough. I also dislike trying to integrate the session system with another file I wrote, as trying to grab the cookies and then trying to grab the DB session data didn't work well - it seems like the session file they point to gets outdated in like 5 minutes, which is exactly like the 'something went wrong!' error, so things only work nicely if I use 'Remember me' when I log in, in which case the DB data and the cookie data stay reliable.
However, there's no option in settings to turn 'file' off and use just mysql + normal cookies.
I am not running a banking application, I don't need my session to refresh every 5 damn minutes if I'm not clicking 'remember me'.
Also, why on Earth does accidentally clicking to the side of login and register cause me to LOSE ALL THE INFORMATION I just typed? Really annoying.
edit: I see one can use the flarum api to get a token for logged in users via a post request? But I still want to know if it's possible to change the sessions system to something basic and get rid of the 'Something went wrong!' error that way. It's very annoying, and I do not wish to repeatedly poll the page.