MyBB Community Forums

Full Version: who's online help please
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
after log out .user removed from who's online list . i want to show them in who's online list after log out for some hour . plz help me

see image for detail

[Image: 280v054.png]
this link is not working
ACP > Settings > Who's Online > Change 15 to 60
but it show just overall user online. i want to show names of user online.see image
(2011-10-21, 05:01 PM)Malcolm. Wrote: [ -> ]ACP > Settings > Who's Online > Change 15 to 60

i mean to say my user name is killeramy. when i am online then my name show in who;s online list. but after log out it does show. i want to show it after log out. see image
ACP > Settings > Who's Online > Change 15 to 60

but i say do this

ACP > Settings > Who's Online > Change 15 to 60000 Smile
Create a new file, put the following in it, upload it to your forum, and create a new cron task in cPanel and make it run every 15 minutes.

<?php

$ch = curl_init ("http://yourwebsite.com/");
curl_setopt ($ch, CURLOPT_COOKIE, "mybbuser=<put cookie value here>"); 
$output = curl_exec ($ch);

?>

(Thanks Tim Toungue)

Replace http://yourwebsite.com/ with your forum URL.

You can get the details of your cookie using a cookie explorer extension for firefox or the one built into opera.