Logout (site data getting cleared) right after login, if user not a developer?
Hi hi - in Spark, if a user is not a developer (listed in the Spark Service Provider), they are getting logged out as soon as they log in. Any idea why or how I can debug? Thanks.
I don't use Spark, but I recently had a similar problem when I was required to update the session domain configuration. Even after deleting all the session data, a user would be immediately logged off after signing in. Clearing the browser cookies would solve the issue on a per-user basis. Ultimately, I ended up creating a new session cookie name to avoid having to clear cookies for every user.
Not sure if that is your problem, but if you've changed anything with your session configuration, might be worth trying.
Thanks, Talinon. I found it, in my case it was simple and something I'd done: the pages were using vue components, and those vue components were connecting with controllers that were set to 'dev' auth. Oops! I did also, in the process, change several things about the session data, though I'm pretty sure the actual problem was that simple.