by Dino Farese.
Thank you Ken! You post it was very helpful!
I have done this query:
FROM_UNIXTIME( prefix_logstore_standard_log.timecreated ) AS data,
prefix_user.username,
prefix_logstore_standard_log.action,
FROM_UNIXTIME( prefix_logstore_standard_log.timecreated ) AS data,
prefix_logstore_standard_log.ip
FROM prefix_logstore_standard_log
INNER JOIN prefix_user
ON prefix_logstore_standard_log.userid=prefix_user.id
WHERE action like 'logged%'
ORDER by data DESC
I have two others problems
I have a lot o loggedin but not the same loggedout
Why? I have to change something in the system?
and
The Order doesn't works.