getting current logged-in users
Hi all, How do i display current logged-in users? Is there an existing Zope product that can do this? Sort of like an In/Out Board to let other members know who's currently online. Thanks, MT
Mike Doanh Tran wrote:
Hi all,
How do i display current logged-in users? Is there an existing Zope product that can do this? Sort of like an In/Out Board to let other members know who's currently online.
In most cases the server simply would not know which are logged in, since it's the client that keeps track of if it's logged in or not. However, it would be possible to keep track of users with sessions, but this is not done by default.
Off the top of my head... The way you could do it would be to do a search through the catalog (master) looking for users who "logged_in" in the last X minutes and have not "logged_out". It might give you a rough idea. See the "undo" tab to see the tracking. BZ
Mike Doanh Tran wrote:
Hi all,
How do i display current logged-in users? Is there an existing Zope product that can do this? Sort of like an In/Out Board to let other members know who's currently online.
In most cases the server simply would not know which are logged in, since it's the client that keeps track of if it's logged in or not. However, it would be possible to keep track of users with sessions, but this is not done by default.
_______________________________________________ Zope maillist - Zope@zope.org http://mail.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http://mail.zope.org/mailman/listinfo/zope-announce http://mail.zope.org/mailman/listinfo/zope-dev )
Hello Mike, Tuesday, February 11, 2003, 7:09:58 PM, you wrote:
Hi all,
How do i display current logged-in users? Is there an existing Zope product that can do this? Sort of like an In/Out Board to let other members know who's currently online.
I currently fake it in one of my sites by using ExUserFolder, and just liting the users that are in the user-cache. ;) -- Geir Bækholt geir@funcom.com Application/HCI-developer Product Operations Funcom Oslo
participants (4)
-
BZ -
Geir Bækholt -
Lennart Regebro -
Mike Doanh Tran