Announcement

Collapse
No announcement yet.

Login protocol

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Login protocol

    Hi,
    Where can I see the logins of users over a longer period of time? A log file for login.
    Peter

  • #2
    Hi
    Are looking for something like Administration -> Auth Token?

    Comment


    • #3
      Not just the last login. The login of a period. For example, one month.

      Comment


      • #4
        select concat(u.first_name,' ',u.last_name) as 'Benutzername',
        a.last_access as 'Login Datum' from auth_token a
        inner join user u on u.id = a.user_id
        where a.last_access >= '2016.11.01' and
        a.last_access <= '2016.11.26'
        ------------------
        Robert Laussegger
        iscon group
        http://www.iscongroup.net
        mailto://info@iscongroup.net

        Comment

        Working...
        X