Similar to problem seen with Firefox. When I login I see "connecting...." at top right, yellow input area bottom left and green area bottom right but nothing else. After a bit get Warning: Unresponsive script.
Fix described by George in Discussion Forums: Diskussion/Discussion, topic "firefox issues" works for SeaMonkey as well. See below. This change needs to get into the distribution.
==================================================================================
RE: firefox issues
By: George (george11) - 2006-10-12 07:17
I found a solution to this problem on the German support forum: http://www.phpopenchat.de/forum/index.php?topic=752.msg3571#msg3571
It works well for me.
The solution is to add id attributes to all frame tags in the include/template/openchat/frameset.tpl file with the same value as in the name attribute.
Like this:
-----------
Logged In: YES
user_id=1317607
Originator: YES
Javascript console shows the following:
Error: window.output has no properties
Source File: http://192.168.2.2:31080/phpopenchat/frameset.php?PHPSESSID=9e596c7c14ce5f6f39a22c289d58cf11
Line: 81
Error: parent.output has no properties
Source File: http://192.168.2.2:31080/phpopenchat/input.php?PHPSESSID=9e596c7c14ce5f6f39a22c289d58cf11
Line: 104
Logged In: YES
user_id=1317607
Originator: YES
Fix described by George in Discussion Forums: Diskussion/Discussion, topic "firefox issues" works for SeaMonkey as well. See below. This change needs to get into the distribution.
==================================================================================
RE: firefox issues
By: George (george11) - 2006-10-12 07:17
I found a solution to this problem on the German support forum: http://www.phpopenchat.de/forum/index.php?topic=752.msg3571#msg3571
It works well for me.
The solution is to add id attributes to all frame tags in the include/template/openchat/frameset.tpl file with the same value as in the name attribute.
Like this:
-----------
<frameset rows="78%,*,0,0" onunload="closeWindows();logout()">
<frameset cols="85%,*">
<frame name="output" id="output" src="output.php?<?=$_SESSION['session_get']?>" frameborder="0" />
<frame name="chatter" id="chatter" src="chatter.php?<?=$_SESSION['session_get']?>" frameborder="0" noresize="noresize" scrolling="no" />
</frameset>
<frame name="input" id="input" src="input.php?<?=$_SESSION['session_get']?>" frameborder="0" noresize="noresize" scrolling="no" />
<frame name="getlines" id="getlines" src="getlines.php?login=1&<?=$_SESSION['session_get']?>" noresize="noresize" frameborder="0" />
<frame name="dummy" id="dummy" src="output.php" frameborder="0" noresize="noresize" />
<noframes>
==================================================================================