I am using phpfreechat 1.0-beta10 ,trying to integrate this system with phpbb forums. I used this http://www.phpfreechat.net/faq.en.html#phpbb thread to configure the setting and its working fine (showing the nickname)...
but suppose if once i login with abc and again if i will try to login with xyz then its showing me the previous conversation of abc too. This means its treating new user as abc not as different user xyz, because its setting session and if once its getting the session its treating the user as previous one.
Is it possible to destroy the session completely before any new login? And how to use phpbb session instead of phpfreechat session?
Is i need to do something in pfcuserconfig.php:
$c =& pfcGlobalConfig::Instance();
// start the session : session is used for locking purpose and cache purpose
session_name("phpfreechat"); //$c->nick
if(session_id() == "") session_start();
$this->nickid = session_id();
or i need to change in pfcglobalconfig?
Please help me out!!!