User Status

  Post new topicReply to topicPrintable Version
<< View previous topic View next topic >>
Share: Del.icio.us  Digg  Google  Spurl  Blink  Furl  Y! MyWeb  
#1   User Status
onesite
CZ Newbie
onesite has been a member for over 20 year's 20 Year Member
Status: Offline
Joined: Sep 06, 2004
0.00 posts per day
Posts: 18
Points: 2,069
   
When I login on PHP-Nuke 7.4 it comes up with:

actual user status OFFLINE

It dosent do this on everyones account just some.

Can someone please telll me why this is happening because otherwise users can't user members features.



Back to top Reply with quote
#2   
aUsTiN
CZ Active Member
usa.gif georgia.gif
Age: 41
Gender: Male
Website:
Status: Offline
Joined: Sep 09, 2003
0.02 posts per day
Posts: 142
Points: 57
  MSN Messenger 
If its only certain users, its typically a cookie problem on their end. Have them dump all their cookies & remake the one for your site to see if it works (assuming you havn't figured itout yet)



Back to top Reply with quote
#3   
Telli
Site Admin
Occupation: Self Employed
Age: 46
Gender: Male
Fav. Sports Team: Detroit Red Wings
Website:
Status: Offline
Joined: May 26, 2003
1.04 posts per day
Posts: 8089
Points: 494,430
   
Try replacing this section of code in your modules/Your_Account/index.php


   $sql2 = "SELECT uname FROM ".$prefix."_session WHERE uname='$username'";
   $result2 = $db->sql_query($sql2);
   $row2 = $db->sql_fetchrow($result2);
   $username_pm = $username;
   $username_online = $row2[uname];
   if ($username_online == "") {
       $online = _OFFLINE;
   } else {
       $online = _ONLINE;
   }


Replace with:


   $sql2 = "SELECT uname FROM ".$prefix."_session WHERE uname='$userinfo[username]'";
   $result2 = $db->sql_query($sql2);
   $row2 = $db->sql_fetchrow($result2);
   $username_pm = $username;
   $username_online = $row2['uname'];
   if ($username_online == "") {
       $online = _OFFLINE;
   } else {
       $online = _ONLINE;
   }



Make a backup of your original.



_________________
The path of the righteous man is beset on all sides by the inequities of the selfish and the tyranny of evil men. Blessed is he, who in the name of charity and good will, shepherds the weak through the valley of darkness, for he is truly his brother's keeper and the finder of lost children. And I will strike down upon thee with great vengeance and furious anger those who would attempt to poison and destroy my brothers. And you will know my name is the Lord when I lay my vengeance upon thee. Ezekiel 25:17
Back to top Reply with quote
Display posts from previous:      
Add To: Del.icio.us  Digg  Google  Spurl  Blink  Furl  Y! MyWeb  
<< View previous topic View next topic >>
Post new topicReply to topic

Jump to 
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You cannot download files in this forum