When updating the extension "Collapsible Forum Categories" to the latest 2.0.0 version, i don't see the - and the + signs anymore on the Chat?
My forum is 3.3.2.
Try this, find: $sql="select b.username as name from bhcaffe_flashchatconnections as a inner join bhcaffe_users as b on a.userid=b.id where state=1"; and replace with: $sql="select b.username as name from bhcaffe_flashchatconnections as a inner join bhcaffe_users as b on a.userid=b.user_id where ...
OK, can you try this: Find this line: $sql="select b.login as name from bhcaffe_flashchatconnections as a inner join bhcaffe_users as b on a.userid=b.id where state=1"; and replace with: $sql="select b.username as name from bhcaffe_flashchatconnections as a inner join bhcaffe_users as b on a ...
You don't have nothing to change in your database :!: I think the problem is that you are running mysqli instead mysql So this code must be changed for mysqli // // Chatters online // $exptime = time()-30;
$sql="select b.login as name from bhcaffe_flashchatconnections as a inner join ...
In your php file file /potal/block/chatbox.php search this line $sql="select b.login as name from flashchat_connections as a inner join flashchat_users as b on a.userid=b.id where state=1"; and repleace with $sql="select b.login as name from bhcaffe_connections as a inner join bhcaffe_users as b ...
I found it on my own :D changed the code portal.php if ($portal_config['portal_minicalendar']) { include($phpbb_root_path . 'portal/block/mini_cal.'.$phpEx); }
if ($portal_config['portal_chatbox']) { include($phpbb_root_path . 'portal/block/chatbox.'.$phpEx); }
I am making a portal block for Flashchat. But for some reason the number of chatters and the names won't display :?: First I made a php file /potal/block/chatbox.php <?php