Ispconfig3 status monitor issue

Discussion in 'Developers' Forum' started by crt, Aug 15, 2013.

  1. crt

    crt New Member

    Hello,


    I installed an Ispconfig3 multiserver environment with 5 hosts and I noticed that one of the hosts is displayed incorrectly on the status monitor page (1st picture).

    I have manage to figure out what the problem is, it's because some </div> element are missing and div class parameters are incorrect:

    The wrong html output:
    Code:
    <div class="systemmonitor-server state-ok os-Debian"><div class="icoDevice"><p class="status"></p></div><div class="statusDevice"><p>Server: s2.xxxx.xx (Debian Wheezy/Sid) ISPConfig 3.0.5.3</p><p>State: ok (0 unknown, 0 info, 0 warning, 0 critical, 0 error)</p><a onclick="loadContent(&quot;monitor/show_sys_state.php?state=server&amp;server=3|s2.xxxx.xx&quot;);" href="#">More information...</a><div> [COLOR="Red"]...div closure tags are missing here...[/COLOR]
    
    <div class="systemmonitor-[COLOR="Red"]ve[/COLOR] state-ok[COLOR="Red"]-ve[/COLOR] os-Debian"><div class="icoDevice"><p class="status"></p></div><div class="statusDevice"><p>ns2.xxxx.xx (Debian Wheezy/Sid) ISPConfig 3.0.5.3</p><p>State: ok</p><a onclick="loadContent(&quot;monitor/show_sys_state.php?state=server&amp;server=7|ns2.xxxx.xx&quot;);" href="#">More information...</a></div></div></div></div></div>
    and the correct one (2nd picture):

    Code:
    <div class="systemmonitor-server state-ok os-Debian"><div class="icoDevice"><p class="status"></p></div><div class="statusDevice"><p>Server: s2.xxxx.xx (Debian Wheezy/Sid) ISPConfig 3.0.5.3</p><p>State: ok (0 unknown, 0 info, 0 warning, 0 critical, 0 error)</p><a onclick="loadContent(&quot;monitor/show_sys_state.php?state=server&amp;server=3|s2.xxxx.xx&quot;);" href="#">More information...</a><div>[COLOR="SeaGreen"]</div></div></div>[/COLOR]
    
    <div class="systemmonitor-[COLOR="SeaGreen"]server[/COLOR] state-[COLOR="SeaGreen"]ok[/COLOR] os-Debian"><div class="icoDevice"><p class="status"></p></div><div class="statusDevice"><p>ns2.xxxx.xx (Debian Wheezy/Sid) ISPConfig 3.0.5.3</p><p>State: ok</p><a onclick="loadContent(&quot;monitor/show_sys_state.php?state=server&amp;server=7|ns2.xxxx.xx&quot;);" href="#">More information...</a></div></div></div></div></div>

    However, there is no additional status information between the brackets, but if I click 'More information...' link it is displayed correctly just as the others (3rd picture).

    I have attached both of screenshots related to the problem.

    Thank you.

    Zoli
     

    Attached Files:

    Last edited: Aug 15, 2013
  2. till

    till Super Moderator Staff Member ISPConfig Developer

    Thanks for the report, I've added it to the bugtracker.
     

Share This Page