You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
edit chat files for integration with phpbb3.0 (standart alone version).
a) autologin custom.php, CustomAJAXChat.php
b) disable session refresh CustomAJAXChat.php
all works fine but then i delete my message and refresh page i see blank chat board until i write something again.
look at picture
The text was updated successfully, but these errors were encountered:
Hi Alexufo. I found a solution for the problem. I think it was bug. I changed function getMessageFilter in file lib/class/AJAXChat.php on line 1932 to:
function getMessageFilter() {
$filterChannelMessages = '';
if(!$this->getConfig('showChannelMessages') || $this->getRequestVar('shoutbox')) {
$filterChannelMessages = ' AND NOT (
text LIKE ('/login%')
OR
text LIKE ('/logout%')
OR
text LIKE ('/channelEnter%')
OR
text LIKE ('/channelLeave%')
OR
text LIKE ('/kick%')
OR
text LIKE ('/delete%')
)';
}
return $filterChannelMessages;
}
edit chat files for integration with phpbb3.0 (standart alone version).
a) autologin custom.php, CustomAJAXChat.php
b) disable session refresh CustomAJAXChat.php
all works fine but then i delete my message and refresh page i see blank chat board until i write something again.
look at picture

The text was updated successfully, but these errors were encountered: