I’d like to know last time a logged-in user accessed my site.
I’m using Authlogic and I already have a “current_login_at” column in my user database, but if a user is using the “remember me” checkbox in the login page the “current_login_at” column is not updated when he is using an old (but still valid) session.
Any ideas?
Thanks,
Augusto
You should add another one column
last_request_atand Authlogic will update it automatically.