|
Cookbook /
OnlyOneLoginSummary: Only allow 1 login at the same time for a username
Version: 1.4
Status: working
Categories: Security
Downloads: OnlyOneLogin.phpΔ
Questions answered by this recipeHow come I can logon in FireFox and Internet Explorer at the same time with the same login name? Can I prevent two people logging in at the same time using the same login name? DescriptionWhen using AuthUser a person can login as many times as they want from different computers and browsers. This recipe will change this so that when someone logs in anyone else with the same user name will be logged out. This gives users incentive to not share their login data with others. InstallationIf you are not using PHP version 5 or newer you will need to install recipe PMWCompat. There are 3 steps to installing OnlyOneLogin. Step 1Create a directory named "userlock" on the same level as you wiki.d directory.
Step2Create a page named "Site.LoginSuperseded".
Step 3Copy OnlyOneLogin.phpΔ to your cookbook directory.
Place this AFTER inclusion of AuthUser !
Inclusion in your config.php:
require("cookbook/OnlyOneLogin.php");
or in your farmconfig.php enter:
require(" $FarmD/cookbook/OnlyOneLogin.php");
NotesUse "require" and not "include" - this will deny any access if the security check fails due to server problems. Do not user "require_once" because someone might capture it's Redirect() and make it void. Better check once too often than once too less. Release NotesThis program is free software. You can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation http://www.fsf.org either version 2 of the License, or (at your option) any later version. Copyright 2007 by GNUZoo (guru@gnuzoo.org) Please donate to the author at url: http://gnuzoo.org/GNUZooPayPal
CommentsSee AlsoContributors |