Does anybody know if it's possible to integrate identity as a sentry context?
Let me explain, I have an old project which works well, but once in a while throws some errors.
The problem is that I can't identify, who is dealing with that.
Tried this with the simplelogin security provider on a server connect:
The error you have is because you have to call the function session_start() to initialize $_SESSION
But then you run into another problem, because Wappler code will also attempt to session_start(), and an error might be thrown due to double session_start()...
You probably have to look into Wappler extensions documentation to figure how to do this (if it's possible)
Yes, I saw a post from famousmag and it's not possible to call session_start: "message": "session_start(): Ignoring session_start() because a session is already active"