Hello
I am chalenging with this problem for some times.
Users comming from some specific proxy servers (3-4 ISP's proxy servers arround the country) go into each other's session.
I am NOT using session IDs on my query string and I have limited session time and cache:
ini_set('session.use_trans_sid', 0);
session_cache_limiter('private');
session_set_cookie_params(20000);
session_start();
It seems when two users login from one of these specific ISPs they go into each other's sessions.
Does anyone have same experience? If yes what solution we have?
Regards,
Mac