Search found 11 matches

by witvisser
6. February 2021 11:55
Forum: v2.1.x
Topic: [RELEASE]mChat V2.1.0 Board3 extension
Replies: 58
Views: 291971

Re: [RELEASE]mChat V2.1.0 Board3 extension

Thank you @kirk ;)
Found the solution here.
by witvisser
1. February 2021 17:06
Forum: v2.1.x
Topic: [RELEASE]mChat V2.1.0 Board3 extension
Replies: 58
Views: 291971

Re: [RELEASE]mChat V2.1.0 Board3 extension

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.
by witvisser
2. April 2009 18:04
Forum: Modification Requests
Topic: Portal Block für FlashChat
Replies: 29
Views: 41426

Re: Portal Block für FlashChat

It was not easy beacuse i couldn't see your database, but I am happy for you that it's working now ;)
by witvisser
2. April 2009 16:44
Forum: Modification Requests
Topic: Portal Block für FlashChat
Replies: 29
Views: 41426

Re: Portal Block für FlashChat

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 ...
by witvisser
2. April 2009 11:41
Forum: Modification Requests
Topic: Portal Block für FlashChat
Replies: 29
Views: 41426

Re: Portal Block für FlashChat

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 ...
by witvisser
2. April 2009 11:24
Forum: Modification Requests
Topic: Portal Block für FlashChat
Replies: 29
Views: 41426

Re: Portal Block für FlashChat

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 ...
by witvisser
2. April 2009 10:06
Forum: Modification Requests
Topic: Portal Block für FlashChat
Replies: 29
Views: 41426

Re: Portal Block für FlashChat

Are this 2 table names correct (look in your database) :?:
bhcaffe_flashchatconnections
bhcaffe_users
by witvisser
2. April 2009 09:55
Forum: Modification Requests
Topic: Portal Block für FlashChat
Replies: 29
Views: 41426

Re: Portal Block für FlashChat

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 ...
by witvisser
1. April 2009 21:13
Forum: Modification Requests
Topic: Portal Block für FlashChat
Replies: 29
Views: 41426

Re: Portal Block für FlashChat

Give me the url to your board and I will take a look ;)
by witvisser
12. March 2009 22:28
Forum: Modification Requests
Topic: Portal Block für FlashChat
Replies: 29
Views: 41426

Re: Portal Block für FlashChat

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);
}

if ($portal_config['portal_link ...
by witvisser
12. March 2009 11:50
Forum: Modification Requests
Topic: Portal Block für FlashChat
Replies: 29
Views: 41426

Re: Portal Block für FlashChat

Hi,

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

/**
*
* @package - Board3portal
* @version $Id: chatbox.php 90 2008-02-03 21:43:30Z kevin74 $
* @copyright (c) kevin ...

Go to advanced search