Hello,
I'm facing a little problem with the multiple channels configuration. I have integrated the demo example code in my chat, but it does not work correctly...
Here is my code :
$params["channels"] = array("Main Room");
$params["frozen_channels"] = array("Main Room", "WebSite Room");
...
<p>Rooms list:</p>
<ul>
<li><a href="#" onclick="pfc.sendRequest('/join', 'Main Room');">Main Room</a></li>
<li><a href="#" onclick="pfc.sendRequest('/join', 'WebSite Room');">WebSite Room</a></li>
</ul>
Actually, I do have the two rooms in my chat, and can access them. But when I leave the WebSite Room and come back in it, there are no messages left.
Main Room works fine.
Any idea?
Thanks