Hi,

I was using ls client js libraries 4.3.1. At some point we updated lightstreamer server to 5.0.
But client libraries stayed 4.3.1. Now i updated client js libraries and on my local setup everything works fine (excluding this popup error: Warning 130
Firebug is known to cause performance and memory issues with Lightstreamer.). But on my UAT server push updates are not working for all browsers. What i mean is that when i connect to page which uses push updates from any of my browsers (on my PC) i don't receive updates and i see from firebug that there is 404 error lsengine_config.js not found (there is no such file anywhere). But from some other PC's every thing is working.

Also why is this FF popup issue showing when i disabled all popups coming from libraries:
Code:
page.context.setDomain(map['domain']);
page.context.setDebugAlertsOnClientError(false);
page.onEngineCreation = function(engine) {
engine.connection.setLSHost(map['host']);
engine.connection.setLSPort(map['port']);
engine.connection.setAdapterName(map['adapter_root']);
engine.changeStatus(map['engine_status']);
engine.context.setDebugAlertsOnClientError(false);
}
page.bind();
page.createEngine("app", map['ls_home'], map['ls_session']);
Warning 130
Firebug is known to cause performance and memory issues with Lightstreamer.