Status of client in Xibo Web interface

Asked by Fido Xibo

Hi,

I have a problem when I connect to admin console.

In the display section, I can see that some displays are not connected with the red icon even if they are connected.

Few minutes after, they appear online with green icon.

Clients are configured to ask the server every 900 seconds (15 minutes).

I tried to modify the timeout alert to increase the default value to 60 minutes but the problem persists.

Server version 1.2.2

Thanks in advance.

Question information

Language:
English Edit question
Status:
Solved
For:
Xibo Edit question
Assignee:
No assignee Edit question
Solved by:
Fido Xibo
Solved:
Last query:
Last reply:
Revision history for this message
Dan Garner (dangarner) said :
#1

It is a limitation, the lights time out after so many minutes (I think 2, but im not sure).

There is a blueprint somewhere to improve this

Revision history for this message
Fido Xibo (fido59) said :
#2

Hi,

I found a solution in the code : the php page is display.class.php :

    function validateDisplays()
 {
     $db =& $this->db;

  // timeout after 20 minutes
  $timeout = time() - (60*20);

 was

    function validateDisplays()
 {
     $db =& $this->db;

  // timeout after 10 minutes
  $timeout = time() - (60*10);

Now it's ok for me.

Best Regards