Hi guys.
So I have written a security system for membership content pages. It basically forbids a user from logging in if their IP address is different from the one recorded in the database (in brief).
However, in the case of network users, people sharing an internet connection, their IP address would be the same, and my security system can't register the difference.
So I am wondering if it is possible to at-least force one user to log out if two or more are using the same username/password.
I am using sessions for authentication, and I am wondering if the server keeps track of say, how many users are logged in, with the username "joe" or whatever.. if that might be a way to get at it..
OR if anyone has any suggestions what to do, with this type of problem..
Thanks a bunch!
-Arron