Code: Select all
'joined' => $user->format_date($row['user_regdate']),
Code: Select all
'joined' => $user->format_date($row['user_lastvisit']),
Code: Select all
<dd class="profile-joined"><strong>{L_JOINED}{L_COLON}</strong> {postrow.POSTER_JOINED}</dd>
Code: Select all
<dd class="profile-joined"><strong>{L_LAST_VISIT}{L_COLON}</strong> {postrow.POSTER_JOINED}</dd>
Code: Select all
'joined' => $user->format_date($row['user_regdate']),
Code: Select all
'joined' => $user->format_date($row['user_lastpost_time']),
Code: Select all
<dd class="profile-joined"><strong>{L_JOINED}{L_COLON}</strong> {postrow.POSTER_JOINED}</dd>
Code: Select all
<dd class="profile-joined"><strong>{L_LAST_ACTIVE}{L_COLON}</strong> {postrow.POSTER_JOINED}</dd>
Last active: 3 minutes ago
Last active: less than a minute ago
Code: Select all
$last_active = (!empty($data['session_time'])) ? $data['session_time'] : $data['user_lastvisit'];
I'm talking about the last appearance on the member profile page. For example, the last time you appeared on your profile page.david63 wrote: Mon May 03, 2021 4:31 pm What is your definition of "last active"? Last post, last login, last page view?
USER STATISTICS
Joined: 19 Dec 2002, 10:08
Last active: Today, 20:53
Total posts:19306 | Search user’s posts
(0.45% of all posts / 2.88 posts per day)
That does not make sense - many (most?) users never visit their profile page and phpBB does not record when someone does so what you are asking is not possible without an extension.halil16 wrote: Mon May 03, 2021 7:50 pm I'm talking about the last appearance on the member profile page.
This is my question too: 'Last login' seems plausible, 'Last page view' to be known would require login, 'Last post' seems less likely...david63 wrote: Mon May 03, 2021 4:31 pm What is your definition of "last active"? Last post, last login, last page view?
Thank you for clarifying that!KevC wrote: Sun Dec 17, 2023 4:15 pm If someone is not shown as ever being active, they have never logged in.
Yes, because he hasn't logged in yet.cday wrote: Sun Dec 17, 2023 3:08 pm When I approve a new registration, very often the new member is never shown as having been 'active'.
Could also, of course, be due to their having not provided a valid email address, and so being unable to complete registration...
The most popular setting is the one that requires email verification by the user. But I remember someone here requesting both email and admin activecation.cday wrote: Sun Dec 17, 2023 3:08 pm Could also, of course, be due to their having not provided a valid email address, and so being unable to complete registration...
I'm still miserable , but a lot has changed in 2 years.KevC wrote: Sun Dec 17, 2023 4:15 pm This seems to be a question unrelated to the original post from 2 years ago.