I am using the latest firefox version, and a preinstalled godaddy installation of phpopenchat, but in firefox the session never connects to the database, whereas it works ok under IE 6. It also has issues with Opera 9, also that browser's current version.
In Opera: it tell me the browser is out of date. In firefox I get a script is not responding error. Is there a fix to this?
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
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:
-----------
I am using the latest firefox version, and a preinstalled godaddy installation of phpopenchat, but in firefox the session never connects to the database, whereas it works ok under IE 6. It also has issues with Opera 9, also that browser's current version.
In Opera: it tell me the browser is out of date. In firefox I get a script is not responding error. Is there a fix to this?
I'm having the same troubles.....
the session can't connect to the database when using firefox 1.5.0.4 but it works fine with IE6....
I am experiencing the same. Can someone help us?
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>
------------------------------