A great script, with all the needed features, and also a very good support.

W.V.Tilborg from campall.nl, View all testimonials.

AVChat newsletter

Subscribe to our (almost monthly) newsletter to receive updates by email:



*confirmation required
Read our no spam policy

FMS box    red5
AVChat 2 and AVConference are compatible with both FMS 2 & 3 and Red5 .

Configuring the bad words and bad nicks filter

Prerequisites:

  • working AVChat installation
  • access to badnicks.xml and badwords.xml
AVChat log in screen

About the 2 xml files

The 2 xml files contain the bad words and nicks that will be filtered. They are basic XML, UTF-8 encoded, files. To edit them you can use Notepad or any other text editor.

Words that are found in the badnicks.xml file can not be used by users as a nick by normal users. Admins can use those words as nicks.

Words that are found in the badwords.xml file will be replaced by *** in the text chat window in the designated rooms.


Modifying the 2 files

To add or remove words (either usernames in badniks.xml or bad words in badwords.xml), open the file you want to edit in a text editor, and on a new line in the xml structure, add these 2 tags:<bad> and </bad>. Between the tags add the new word. Your final file should look something like this:

<?xml version="1.0" encoding="utf-8"?>
<badwords>
	<bad>admin</bad>
	<bad>email</bad>
	<bad>porno</bad>	
	<bad>new word</bad>
</badwords>

As you can see you can also add word pairs, like 'John Doe'. If your name is John Doe and you want no one else to enter with that name you can add it in your badnicks.xml file. It's great to be an admin isn't it! :) Here's an example:

<?xml version="1.0" encoding="utf-8"?>
<badnicks>
	<bad>bad admin</bad>
	<bad>im a bad admin</bad>
	<bad>Britney Spears</bad>	
	<bad>John Doe</bad>
</badnicks>

Where will the badwords be censored

The php or asp configuration file allows you to tell AVChat in what rooms to replace the words in badwords.xml with ***. Available options are: none, all rooms and only in the lobby. To change this open the php or asp configuration file and modify the value of langagefilter to 'lobby' (only for lobby), 'full' (for all rooms) or 'off' (no language filter).