Introducing Exciting New Features on HTML5-Chat.com!

At HTML5-Chat.com, we are constantly striving to enhance your chat experience. We are excited to announce the addition of an array of new avatar libraries, making your conversations more colorful, expressive, and engaging than ever before.

New Avatars for a Personal Touch

Avatars are a vital part of any online conversation, adding a personal touch and making interactions more enjoyable. To cater to your diverse preferences, we have introduced the following avatar libraries:

  • ‘default’
  • ‘bottts’
  • ‘avataaars’
  • ‘initials’
  • ‘big-smile’
  • ‘croodles’
  • ‘croodles-neutral’
  • ‘fun-emoji’
  • ‘icons’
  • ‘identicon’
  • ‘lorelei’
  • ‘lorelei-neutral’
  • ‘micah’
  • ‘miniavs’
  • ‘notionists’
  • ‘open-peeps’
  • ‘personas’
  • ‘pixel-art’
  • ‘pixel-art-neutral’
  • ‘shapes’
  • ‘thumbs’
  • ‘adventurer’

These avatars are designed to cater to a wide range of tastes, from playful and creative to professional and minimalistic. Whether you’re using our chat platform for personal conversations, business meetings, or community discussions, you can now choose an avatar that truly represents you.

How to Enable the New Avatars

Enabling these exciting new avatars is a breeze. Simply head to the admin panel of your HTML5-Chat.com account and navigate to the configuration section. From there, you can select your preferred avatar library and customize your chat experience.

We believe that these new avatar libraries will add a new dimension to your conversations and make your interactions on HTML5-Chat.com even more enjoyable. Express yourself with creativity or maintain a professional appearance – the choice is yours.

Whether you’re an individual user, a team, or a community, our goal is to provide you with the tools to make your online conversations as engaging and authentic as possible. These new avatars are just one of the many ways we’re working to improve your experience.

Join Us in the Avatar Revolution!

We invite you to explore the new avatar libraries and select the ones that resonate with you the most. Share your feedback with us – we value your input and are committed to making HTML5-Chat.com the best it can be.

Thank you for choosing HTML5-Chat.com as your preferred chat platform. We are committed to continuously improving our service to meet your needs. Stay tuned for more exciting updates in the future!

chatCSS

Introducing Personal CSS for Chat Rooms

Introducing Personal CSS for Chat Rooms

We’re thrilled to announce a fantastic new feature on HTML5-Chat.com that will take your chat room customization to the next level!

Starting today, each chat room on our platform can now have its very own personal CSS. This means you have the power to style your chat rooms exactly the way you want them, making them uniquely yours.

How does it work? It’s incredibly simple:

  1. Create or edit a chat room as usual.
  2. In the room settings, find the new “CSS External” section.
  3. Specify the link to your external CSS file.
  4. Save your changes, and voilà! Your chat room now reflects your custom styling.

Whether you want to match your chat room’s appearance to your website’s design or create a themed chat experience, the possibilities are endless.

We can’t wait to see the creative and unique chat rooms you’ll design with this feature.

Thank you for choosing HTML5-Chat.com for your chat needs. We’re committed to continually improving your chat experience, and we hope you enjoy this latest addition!

Why Personal CSS Matters

With the ability to apply personal CSS to your chat rooms, you can:

  • Enhance Branding: Maintain a consistent look and feel with your website or brand’s identity.
  • Create Themes: Craft unique chat experiences for special events or communities.
  • Improve Readability: Customize fonts, colors, and layouts for better readability.
  • Stand Out: Make your chat room memorable and distinguish it from others.

Personalizing your chat room’s appearance has never been easier. Simply upload your CSS file and watch your chat room transform!

discreet

Introducing the can_watch_discreetly Feature on HTML5-Chat

We are happy to announce the introduction of a brand new feature on HTML5-Chat: the can_watch_discreetly Feature.

The new can_watch_discreetly Feature gives users the ability to supervise others without being seen by the users they are monitoring. This is an essential tool in determining whether users are following the rules and guidelines, maintaining a safe space for all.

This new feature allows for an added level of safety and security on HTML5-Chat, as admins can now discreetly monitor and intervene should any rule breaches occur.

Happy chatting!

upload image

Upload image directly to chat

You can upload images into the chat and now even using quick upload images thanks to the new resize on click size feature.

The uploaded image is inserted into the chat input text as a thumb and you can send it to the chat.

Now you can upload the image directly to the chat without inserting the thumb in the input text : you ahve added a new field uploadImageSendDirect in the config.

Once checked, the image you upload goes directly to the chat. This is very useful for mobile chat.

ddos

Chat and Anti DDOS solution

Some of chats may have that message:

Error 1020

 Ray ID: 6a0f8eb32b2eb65f • 2021-10-20 04:38:34 UTC

Access denied

This is an anti ddos message : it means that the chat account was disabled for 2 hours because it was generating too much unnatural trafic. Mostly of time it creates >30,000 entries / minute.

Our filters have isolated it and maintains it offline during the attack. After 2 hours, chat should be back online again.

Solutions for anti ddos attacks

There is no easy solution to counter an anti ddos attack. We suggest you use anti ddos attack on your site placing it behind a proxy that allows to filter many bad ips. The most popular solution is cloudflare.

You can also use some server modules such as modEvasive for apache. Nginx has its own module integrated.

Also the most radical solution would be to host the chat on your own server, which means you need the source code version.

youtubeSEarch

Using youtube Search API

You can now enable Youtube Search API to add youtube searching.

First you need to get your personal youtube API key from : https://developers.google.com/youtube/v3/getting-started

Once you got that key (ex: AIzaSyBsdbcJ1YhvG64t9n541CqOHcXiXXXXXX), you can update your chat config and set that key.

Now, anytime you press the youtube button, you will be prompted to enter the search keyword.

Input search modal
Youtube search
Results of the youtube search.

How to add html5-chat into Vbulletin ?

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/