Subscribe to wTag shoutbox - mini chat RSS feed (new releases)
Shoutbox mini chat installation guide
How to configure the anti spam filter:
  • Open conf.js (the file is located in 'wtag/js' folder) in a simple text editor for example Notepad.
  • Edit 'spamwords' array:
    /* Enter the words or groups of words
    you want to ban (messages that contain
    them will not be sent) */
    var spamwords = ['naked', 'nude', 'viagra',
    'porn', 'free sex', 'INSTANT BOOSTER',
    'INSTANT-BOOSTER', 'INSTANTBOOSTER',
    'linking to your ad'];
    
    Add any words or groups of words you want to ban using the same syntax.
  • The filter matchs exact words or phrases only. For example if you have added the word 'sex' to the array, only the word 'sex' will be banned, but not the word 'sexy'. Likewise if you have added the 'linking to your ad', only the 'linking to your ad' will be banned, but not the words 'your' or 'ad'.
  • If you want to match not an exact word or group of words, use the first 'characters' array. In this case if you add 'free-something' to the array, the filter will match 'http://free-something.net' also.
How to configure the bad word filter:
  • Open conf.js (the file is located in 'wtag/js' folder) in a simple text editor for example Notepad.