Currently in chat list box,only online/away users are displaying.
How can I show offline users also in the Chat list?
(arrowchat_status.session_time + 60 + " . $online_timeout . ") > " . time() . "#arrowchat_userslist_offline{display:none}SELECT DISTINCT " . TABLE_PREFIX . DB_USERTABLE . "." . DB_USERTABLE_USERID . " userid, CONCAT(newstime_users.first_name, ' ', newstime_users.last_name) username, arrowchat_status.session_time lastactivity, " . TABLE_PREFIX . DB_USERTABLE . "." . DB_USERTABLE_AVATAR . " avatar, " . TABLE_PREFIX . DB_USERTABLE . "." . DB_USERTABLE_USERID . " link, arrowchat_status.message, arrowchat_status.status
FROM " . TABLE_PREFIX . DB_USERTABLE . "
JOIN arrowchat_status
ON " . TABLE_PREFIX . DB_USERTABLE . "." . DB_USERTABLE_USERID . " = arrowchat_status.userid
WHERE ('" . time() . "' - arrowchat_status.session_time - 60 < '" . $online_timeout . "')
AND " . TABLE_PREFIX . DB_USERTABLE . "." . DB_USERTABLE_USERID . " != '" . $db->escape_string($userid) . "'
ORDER BY " . TABLE_PREFIX . DB_USERTABLE . "." . DB_USERTABLE_NAME . " ASCSELECT DISTINCT " . TABLE_PREFIX . DB_USERTABLE . "." . DB_USERTABLE_USERID . " userid, CONCAT(newstime_users.first_name, ' ', newstime_users.last_name) username, arrowchat_status.session_time lastactivity, " . TABLE_PREFIX . DB_USERTABLE . "." . DB_USERTABLE_AVATAR . " avatar, " . TABLE_PREFIX . DB_USERTABLE . "." . DB_USERTABLE_USERID . " link, arrowchat_status.message, arrowchat_status.status
FROM " . TABLE_PREFIX . DB_USERTABLE . "
JOIN arrowchat_status
ON " . TABLE_PREFIX . DB_USERTABLE . "." . DB_USERTABLE_USERID . " = arrowchat_status.userid
WHERE " . TABLE_PREFIX . DB_USERTABLE . "." . DB_USERTABLE_USERID . " != '" . $db->escape_string($userid) . "'
ORDER BY " . TABLE_PREFIX . DB_USERTABLE . "." . DB_USERTABLE_NAME . " ASCsignatureboy wrote:the method shown above will work ?
because i want to leave offline msgs for my friends
but they do not show in the list
kindly help
SolidSnake wrote:There isn't one...after all. Not DURING the installation or AFTER.
NO integration.php file!!?
The 2nd Method: Where to find this to edit? Please define.
Thx
SolidSnake wrote:5th time I re-installed it now Okay, now with the knowledge to chmod all of the files and forders. BUT again...No difference. No such file during the installation, no file in the first step, no integration.php file in the includes folder...
Is there only this way to fix that? Hope for another, because this method doesn't work...
Jason wrote:In the includes/integration.php you'd need to remove the time restriction. Typically by removing this:
- Code: Select all
(arrowchat_status.session_time + 60 + " . $online_timeout . ") > " . time() . "
The CSS in your theme must also be removed:
- Code: Select all
#arrowchat_userslist_offline{display:none}