The following warnings occurred:
Warning [2] Undefined variable $unreadreports - Line: 26 - File: global.php(961) : eval()'d code PHP 8.1.2-1ubuntu2.14 (Linux)
File Line Function
/global.php(961) : eval()'d code 26 errorHandler->error
/global.php 961 eval
/showthread.php 28 require_once





× This forum is read only. As of July 23, 2019, the UserSpice forums have been closed. To receive support, please join our Discord by clicking here. Thank you!

  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Avoid Multiple Login
#1
Hello,

How to avoid user multiple login at same time from many browser?
Thank you
  Reply
#2
We've talked about this. I'm not really sure how to prevent it. I have a few ideas. I'll will give it a shot and see what I can come up with.
  Reply
#3
Great. Can't wait to hear the update
Lot of thanks
  Reply
#4
If you record a user's session in the database on login, each time a user loads a page from any location you can check if the current session matches the one in the database. Since each login from other browsers or devices will create a new session ID each time, the most recent login will be the one recorded in the database and all other logins will basically be expired. In your check, if the sessions don't match you can log them out and redirect them to login (perhaps with a message that they have since logged in elsewhere).
  Reply
#5
I can give you some code to test off the top of your head that shouldn't break anything. Go into your users table and add a column called session (varchar 255).

Go to usersc/scripts/just_after_login.php and put this...
Code:
$session = Token::generate();
Code:
session_id($session);
Code:
$db->update('users',$user->data()->id,['session'=>$session]);

Then in usersc/includes/head_tags.php put

Code:
if($users->data()->session != $_SESSION['token']){
Code:
Redirect::to('http://mydomain.com/users/logout.php');
Code:
}

Give that a whirl and see what happens.


  Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)