Hi dkd903,
i follow your instruction, everything ok but only for the admin. When i try to login with the user, i get an error.
maybe i do something wrong in config.php, CustomAJAXChat.php, custom.php. I think is some problem to redicrection because can not find the user.
some error here on CustomAJAXChat.php :
// Store the channels the current user has access to
// Make sure channel names don't contain any whitespace
function &getChannels() {
if($this->_channels === null) {
$this->_channels = array();
$customUsers = $this->getCustomUsers();
// Get the channels, the user has access to:
if($this->getUserRole() == AJAX_CHAT_GUEST) {
$validChannels = $customUsers[0]['channels'];
} else {
$validChannels = $customUsers[$this->getUserID()]['channels'];
}
thank you for you help