PDA

View Full Version : alpha5 is really nice


pabloadmin
31-01-2005, 17:57
I was using zabbix 1.0 and 3 days ago emigrate to alpha5 in production.
The data base migration was difficult for me because i added icons and some customizations on the fontend, but i'am very happy with the new version of Zabbix.

My congratulations Alexei, Zabbix is very nice!!! :)

PS Only a question, in the maps, when i specify a host with a link, it didn't work, How can i activate it? or this function will be support it in the new release?

thank you...

Alexei
03-02-2005, 14:08
Unfortunately I cannot check it quickly. My primary test system has been upgraded to SuSE 9.2, now maps do not work because of some weird problem with PHP or GD. PHP functions CreateImageFromString() makes Apache crash. I do not know how to heal it yet.

pabloadmin
03-02-2005, 21:14
ok, thank you and good luck with your SuSe...

pabloadmin
04-02-2005, 00:03
Alexei,

in the maps, when i specify a host with a link, it didn't work. The line you add to correct this problem was:

$map="\n<map name=links".$_GET["sysmapid"]."_".rand(0,100000).">";

But you didn't modify the line:

echo "<img src='map.php?sysmapid=$resourceid&noedit=true&border=1' border=0 usemap=#links>";

I replaced the first line to:

$map="\n<map name=links".$_GET["sysmapid"].">";


and the second to:

echo "<img src='map.php?sysmapid=$resourceid&noedit=true&border=1' border=0 usemap=#links".$_GET["sysmapid"].">";

I modified these files:

include/config.inc.php
maps.php
screens.php

And now, the maps and screens work very well... I don't know if #links is a global variable, for this reason i remove rand(0,100000) . The problem was in the second line because usemap is different to <map name=links".$_GET["sysmapid"]."_".rand(0,100000), that defined at the first line.


Best regards.
Pablo.