 To enter room XX you must become a member of XX  (0 viewing)
 | | |
|
TOPIC: To enter room XX you must become a member of XX
|
|
|
|
Re:To enter room XX you must become a member of XX 5 Years, 4 Months ago
|
Karma: 70
|
|
Hey,
I am not sure how BlastChat client 2.2 really works under Joomla 1.5 legacy mode. If 1.5 legacy mode does not keep same session data object mainframe->_session, then it will not work. Try to edit blastchatc.php file at the beginning:
Replace:
global $mosConfig_absolute_path, $database, $mosConfig_live_site, $mosConfig_lifetime, $mosConfig_lang, $mainframe, $cur_template, $myss, $bc_site, $_VERSION;
$myss = $mainframe->_session;
with
///////////////////////////////////////
global $mosConfig_absolute_path, $database, $mosConfig_live_site, $mosConfig_lifetime;
global $mosConfig_lang, $mainframe, $cur_template, $myss, $my, $bc_site, $_VERSION;
//prepare global variables
if ($_VERSION) {
$prod = $_VERSION->PRODUCT;
$rel = $_VERSION->RELEASE;
$dev = $_VERSION->DEV_LEVEL;
if ($prod == "Joomla!") {
if ($rel _session;
} else {
//rel = 1.5
$data_base_ =& JFactory::getDBO();
$session =& JFactory::getSession();
$myss = $this->getTable('session', 'JTable');
$myss->load($session->getId());
}
} else if ($prod == "Mambo") {
if ($rel _session;
} else {
//rel=4.6
//dev=x
$myss =& mosSession::getCurrent();
}
}
}
this MIGHT solve it.
MAKE sure you adjust database, mainframe and possibly other variables that this forum's bug changes.
|
|
|
|
Last Edit: 2007/12/28 14:22 By BlastChatSupport.
|
|
|
|
To enter room XX you must become a member of XX 5 Years, 4 Months ago
|
Karma: 0
|
|
Hi Support,
I have installed BlastChat client 2.2 today in Joomla 1.5 (legacy enabled) and the installation, regsitration worked fine. After reading everywhere, I am posting here with all details hoping to fix my problem.
In my configuration, global features are disabled, and chat starts with rooms list. I have two rooms, and for both rooms Guests, Global Guests are disabled.
First of all it asks for a nick from a site registered user, whereas the nick should already be the site registered username, second even if I put some nick, while selecting room it says "To enter room XX you must become a member of XX". At times, it also says, the global name is already in use, when I enter some nick.
I guess in normal cases, it shouldn't ask for a nick for a site registered user, and should allow to enter into the site's rooms.
Also, I don't see any users under the user section in the configuration manager screen. My expectation is that should be auto created the first time a site registered user enters the chat.
Also, the configuration manager complaints "This website has no Super Administrator assigned. Assign one in "Users" area." Well, I have no users to select, to assign one.
Please tell me where am I going wrong. Thank you in advance.
./Malikkal
|
|
|
|
|
|
 | | | 
|