I pressed "Install/Update DB" button manually.
Just catched one problem.
I'm using "eve_sso" mod for comments.
When "Use WebGl ship Display" option activated comments not shown.
I pressed "Install/Update DB" button manually.
Code: Select all
onload = onDocumentLoad;
Code: Select all
window.onDomReady = initReady;
function initReady(fn)
{
if(document.addEventListener) {
document.addEventListener("DOMContentLoaded", fn, false);
}
else {
document.onreadystatechange = function(){readyState(fn)}
}
}
function readyState(func)
{
if(document.readyState == "interactive" || document.readyState == "complete")
{
func();
}
}
window.onDomReady(onDocumentLoad);
Code: Select all
<body style="height: 100%" onload="xajax_getComments(90728);">
You could try to figure out which module is causing the problem (most likely a new or tiericided one) and add it to the ignore list in the init file, probably takes longer to find all of them than the update takes.anchorhead wrote: ↑Sun Mar 13, 2016 23:29 ok thanks for info, is there a temporarly solution for don't show this error ?