This file is missing and toses an 404 on firebug on starting the posting/live preview:
http://www.the_domain.net/styles/Chrimbo/theme/images/icon_faq.gif
Attachment:
1.png [ 253.9 KiB | Viewed 7203 times ]
After that 'missing error' (some seconds) it works perfectly in firefox:
Attachment:
2.png [ 966.26 KiB | Viewed 7203 times ]
Just hit F5 after that firebug error.
So the solution is simple:
- Pull the missing file on the right place.
- Also check this fix for the "incoming littlebox with [ok] button" > in chrome:
https://www.phpbb.com/customise/db/mod/ ... 32#p192432- Also the update time for live preview is to short on this board (this board rides faster as on my testboards). Make it a bit longer:
open
livepreview.js
find
Code:
setTimeout ('process()',100);
}
}
function handleServerResponse ()
{
if (xmlHttp.readyState == 4)
{
if (xmlHttp.status == 200)
{
xmlResponse = xmlHttp.responseText;
document.getElementById("livepreview").innerHTML = xmlResponse;
setTimeout ('process()',150);
replace with
Code:
setTimeout ('process()',200);
}
}
function handleServerResponse ()
{
if (xmlHttp.readyState == 4)
{
if (xmlHttp.status == 200)
{
xmlResponse = xmlHttp.responseText;
document.getElementById("livepreview").innerHTML = xmlResponse;
setTimeout ('process()',300);
or replace with
Code:
setTimeout ('process()',200);
}
}
function handleServerResponse ()
{
if (xmlHttp.readyState == 4)
{
if (xmlHttp.status == 400)
{
xmlResponse = xmlHttp.responseText;
document.getElementById("livepreview").innerHTML = xmlResponse;
setTimeout ('process()',600);