Html5 chat is now compatible with IPV6. In fact we make a ipv6-ipv4 translation. So ALL your logs, bans, messages will ALWAYS have an ipv4.
Either a real IPV4, either a translated ipv4.
Html5 chat is now compatible with IPV6. In fact we make a ipv6-ipv4 translation. So ALL your logs, bans, messages will ALWAYS have an ipv4.
Either a real IPV4, either a translated ipv4.
This is very similar to Drupa8/9 plugin
you can download it from this link
go to : configuration->Account setting, Managed field

Add new field called “gender” (list text)

and put them values : male female


and enable Content / html5chat

then edit the chat parameters with your own html5 chat account data

Restrict that block to chat page


and set the URL alias as chat

Congratulations: you just created your html5-chat inside yoursite.com/chat page
Here is a quick guide on how to install html5-chat with Drupal8/9

Add a new field

called gender




Go to content, click on Place bloc, search for htmlchat and click place block in the modal window

Go to the Pages vertical tab and enter /chat
that means that the page named “chat” will contain your html5-chat


and choose “Basic page”

And that’s ALL. Save all (clear cache from Configuration->performance) and go to yoursite.com/chat and your html5-chat chat will appear there !

There was a global action on forbidden word:
Now you have a action per word: you can define on EACH individual word, what action should be taken.
You can for instance hide the F* word and kick someone on N* word
You will find that in your forbidden words panel.
Vbulletin is a very popular forum system for your website.
Here are the steps to integrate Html5-cjat into vbulletin
<?php
session_start();
require_once('./global.php');
$user = array(
'id' =>$vbulletin->userinfo['userid'],
'username' =>$vbulletin->userinfo['username'],
'gender' =>strtolower($vbulletin->userinfo['field5']),
'country' =>$vbulletin->userinfo['field2'],
'birthday' =>$vbulletin->userinfo['birthday'],
'role' =>$vbulletin->userinfo['usergroupid'],
);
//die($user['role']);
if ($vbulletin->userinfo['avatarrevision']>0) {
$user['image'] = "https://exbb.redclouds.com/customavatars/avatar".$vbulletin->userinfo['userid']."_".$vbulletin->userinfo['avatarrevision'].".gif";
}
$encoded = file_get_contents("https://jwt.html5-chat.com/protect/".base64_encode($json));
you inject that encoded string into your JS script
<script src="https://html5-chat.com/script/<?=webmasterid?>/<?=$encoded?>"></script>
And that’s ALL. You can read more about full JWT integration:
https://html5-chat.com/blog/jwt-a-quicker-and-simpler-version-using-the-html5-service/
Emojis in private window chat

You can now upload videos. You need to enable that in roles.
then you will be able to upload video directly inside the chat

You can now control the web radio :

To add this feature, you need to go to chatadmin/roles and check the new property:
“Can administrate web radio“
In the chat text bar, you can now group text attributes (Bold, Italic, Underline and color) in 1 button to gain some extra place.
You just need to check the parameter groupTextAttributes in your chatadmin/config/design panel


We have added 3 new rules for dynamic rooms. Dynamic rooms are real time created rooms by users (you can enable them in your chatadmin roles panel: can create room)
In your chatadmin config/Chat, you can find now a new select box “When a dynamic room is deleted ?” that has 3 possibles states
Notice that a dynamic room can be deleted directly in the chat.
You can define who can delete dynamic room from chatadmin roles:
canDeleteRoom : this role can delete ANY dynamic role (should be reserved to admins or moderators)
candeleteHisRoom : this room can delete only his own room
When you choose chat type: window, your private chat will open in individual draggable, resizeable windows.
Now you can start an exclusive webcam video chat inside that individual windows: you just need to check the option: “Private tab window has webcam” inside your chatadmin / config / webcam panel

Notice that this webcam is EXCLUSIVE to an user: other users will not be able to watch at you and also, you cannot open many individuals webcams at the same time.