Hi.
I am using phpfreechat plugin for wordpress. I am trying to create for each site page their own chat room (depending from url). I have found that solution:
on each page I set:
$my_input['serverid'] = md5($page_url);
$my_input['channelname'] = $page_url;
$my_input['channels'] = array($page_url);
and then:
update_option('phpfreechat',$my_input);
It works fine, but not in firefox. In Firefox after updating chat option 'channels', chat has no those options that I set. For example: I set $my_input['channels'] = array('page2'), but if I get chat options I will see 'pag3'. This problem only in firefox, Opera and Crhome works fine.
Can you tell what the cause of this strange behavior? And how personal chat rooms can be done?