SuriMondego wrote:It seems that I have a little permission issue.
The only thing I see in the profile is: "Time spent online:You cannot see this users online time."
Hey.
So you are sure that online status isn't hidden, neither in the UCP, nor during login (so in the session)?
Are you familiar with getting infos from the database? We can make it sure then.
You need to get the user_id. You can see it when viewing the profile of the user, in the url, right behind the
u=
.
Enter this number in the following two queries where the XXX is
Code: Select all
SELECT user_id, username, user_allow_viewonline
FROM phpbb_users
WHERE user_id = XXX
Code: Select all
SELECT session_user_id, session_viewonline
FROM phpbb_sessions
WHERE session_user_id = XXX
And tell me wich is the value of
user_allow_viewonline
and
session_viewonline
for this user. If there is more than one session, tell me all this values.