-
I need help!! My chat is still not working.... .
2010-01-06 14:05:10 UTC by smokeytek
-
Is it possible?.
2010-01-05 19:24:45 UTC by digitoday
-
This type of functionality seems only to be available in commercial chat software, so it'd certainly be a very welcome addition to AJAX Chat!
- Admin can to switch a channel to "moderated mode"
- Admin or Moderator can set 1 or more users as "VIP" (Can chat without moderation)
- Guests and/or Registered Users can submit messages
- Admins & Moderators see all messages & can click an...
2010-01-05 18:10:20 UTC by mediaworksmt
-
I tried to open the Demo of ajax chat. The problem is : Firefox 3.0.14 didn't open it.
I got this message:
XML-Verarbeitungsfehler: nicht wohlgeformt
Adresse: http://chat.ecobytes.net/
Zeile Nr. 226, Spalte 340:return text.replace(arguments.callee.regExp,this.decodeSpecialCharsCallback);},decodeSpecialCharsCallback:function(str){switch(str){case '&':return '&';case '<':return...
2010-01-05 17:57:31 UTC by namina
-
function getChannelOptionTags() {
$channelOptions = '';
$channelSelected = false;
foreach($this->ajaxChat->getChannels() as $key=>$value) {
if($this->ajaxChat->isLoggedIn()) {
$selected = ($value == $this->ajaxChat->getChannel()) ? ' selected="selected"' : '';
} else {
$selected = ($value == $this->ajaxChat->getConfig('defaultChannelID')) ? ' selected="selected"' : '';.
2010-01-05 09:26:30 UTC by metalheadstorm
-
annother question where / what function populates the channel option dropdown box in the loggedin.html.
2010-01-05 09:23:40 UTC by metalheadstorm
-
if i have 3 public channels and 1 channel that is specific to a user or a number of users, is there a way to link these to an image rather than a drop down box ?
so:
you have a list of channels
id name
0 world
1 recruitment
2 help
3 allianceA
4 allianceB
image 1 = channel id: 0 / channel name: world
image 2 = channel id:
2010-01-05 08:33:27 UTC by metalheadstorm
-
hi again,
i have a list of channels in my database and i get them in my channels.php
they go like so:
id name
0 world
1 recruitment
2 help
3 alliance
4 alliance
5 alliance
is it possible to have channels called the same name, but witha different id ?
if i set:
user1 channels to 0,1,2,3
user2 channels to 0,1,2,4
user1 cannot see the...
2010-01-05 07:55:23 UTC by metalheadstorm
-
where i can find ajax_chat_messages ? I don't see it.
2010-01-05 07:01:22 UTC by gilic
-
fixed!
in AJAXChat.php
go to the ( at about like 524 )`function switchChannel($channelName) {`
then under
// Channel enter message
$text = '/channelEnter '.$this->getUserName();
$this->insertChatBotMessage(
$this->getChannel(),
$text,
null,
1
);
add:
if($this->getChannelName() == "alliance" &&...
2010-01-05 06:19:24 UTC by metalheadstorm