Hello,
Recently, I have been dealing with "page cannot displayed errors" while using ttx and have been working with my service provide to resolve the issue. Our service providing is stating the following....
This site is using JS settimeout method of update, and reload all page with HTML request.
function setrefreshrate(tmout) {
if (htimeout != null) {
clearTimeout(htimeout);
htimeout = null;
}
if (tmout > 0) {
htimeout = setTimeout(update, tmout * 1000);
}
}
This method needs 100% quality of connection, if there will just one 0.5 sec disconnect during connection - page will fault.
I recommend to update refreshing part, using ajax methods or provide tcptraceroute log for determine issue.
The above mention code resides in the helpdesk.html template at line 23.
Are there any recommendations/modifications available for this piece of code that will help?
Thank you in advance
Arvin