I am running my website (exactly same source code, even user login detail) on two different computers, each have their own apache. Users can access both websites via my port fwd setting.
For example, 10.10.10.10:81 to access website on computer A and 10.10.10.10:82 to access website on computer B.
User have no problem to access either one of them. Until user wanna access both of them at the same time using the same internet browser.
Login to website on computer B will log him/her out from website on computer A.
Why this happen? Because same IP Address will auto generate the same Session ID? Different ports won't have different Session ID? How to avoid this? Manually generate Session ID will do? Any other solution for this issue?
Thank you.