I have a few running servers, behind a load balancer
I'm using hybridauth to authenticate users throw google and facebook
By reviewing the hybridauth code it seems that it uses the session to store data while it pinging back and forward with the given provider.
When i'm behind a load balancer i'm expose to a scenario: that the machine that started the authentication process is not the machine that will end the authentication process and the session data will vary.. so the authentication will fail
what can i do ?
Thanks
You could easily store sessions in redis or memcache with laravel and that would solve your problem.