Alexei,
We have an older system which is running one of our Zabbix 1.1a7 installations. This system is running PHP4.1. There are 2 problem areas, both stemming from using <? to start a PHP codeblock, instead of <?php .
So basically we're getting 2 sections of code which are not being executed, and just being displayed as HTML.
1) include/html.inc.php, line 21
2) hosts.php, line 320
When I modified both of those lines to be <?php, then everything worked fine. Those are the only two places I found that were using <?.
Simple fix.
joe
We have an older system which is running one of our Zabbix 1.1a7 installations. This system is running PHP4.1. There are 2 problem areas, both stemming from using <? to start a PHP codeblock, instead of <?php .
So basically we're getting 2 sections of code which are not being executed, and just being displayed as HTML.
1) include/html.inc.php, line 21
2) hosts.php, line 320
When I modified both of those lines to be <?php, then everything worked fine. Those are the only two places I found that were using <?.
Simple fix.

joe
Comment