Hello!
Is update to 0.9.9-4 available for i-doit open version?
Thanks.
Latest posts made by tolik25251
-
I-doit 0.9.9-4 for open version users
-
RE: Nagios export troubles
Looks like nobody uses router with ssh and exports data to nagios
-
RE: International character support
Dainis, for me, it was most difficult thing to solve
try this patch
or edit files manually (don't forget to make a backup)From 8916e7587e85991dfcf639f0b3bda643d3e6ed01 Mon Sep 17 00:00:00 2001 From: root <root@02-cmdb01.(none)>Date: Fri, 22 Oct 2010 16:14:20 +0700 Subject: [PATCH 7/7] fixed garbage in edit and listbox --- .../smarty/isys_smarty_plugin_f_dialog.class.php | 2 +- .../smarty/isys_smarty_plugin_f_text.class.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/classes/smarty/isys_smarty_plugin_f_dialog.class.php b/src/classes/smarty/isys_smarty_plugin_f_dialog.class.php index f001693..d5d94bb 100644 --- a/src/classes/smarty/isys_smarty_plugin_f_dialog.class.php +++ b/src/classes/smarty/isys_smarty_plugin_f_dialog.class.php @@ -310,7 +310,7 @@ implements isys_smarty_plugin if (isset($l_excludes[$l_key])) continue; - $l_encoded_value = $g_comp_template_language_manager->get(htmlentities($l_value)); + $l_encoded_value = $g_comp_template_language_manager->get(html_entity_decode($l_value)); $l_strSelected = (($p_param["p_strSelectedID"] == $l_key)) ? diff --git a/src/classes/smarty/isys_smarty_plugin_f_text.class.php b/src/classes/smarty/isys_smarty_plugin_f_text.class.php index f85c2f6..91f424b 100644 --- a/src/classes/smarty/isys_smarty_plugin_f_text.class.php +++ b/src/classes/smarty/isys_smarty_plugin_f_text.class.php @@ -124,7 +124,7 @@ implements isys_smarty_plugin } $p_param["p_strValue"] = stripslashes($p_param["p_strValue"]); - $p_param["p_strValue"] = htmlentities(isys_glob_unescape($p_param["p_strValue"])); + $p_param["p_strValue"] = html_entity_decode(isys_glob_unescape($p_param["p_strValue"])); if (is_null($p_param["p_nSize"])) { $p_param["p_nSize"] = "40"; -- 1.7.0.4</root@02-cmdb01.(none)>
-
Nagios Export Sorgen
(Sory für mein Deutsch. Ich bin mit Google Translate)
Hallo!
Ich versuche, meine Konfiguration zu nagios Export und lief in einige Probleme.Ich kann nicht definieren Router IP-Adresse so zu nagois "hosts.cfg exportiert wird. Gibt es eine Möglichkeit, einen solchen Trick zu tun?
(Und warum Router "Access" ist immer HTTP? Was passiert, wenn ich nur ssh-Zugang haben, wie kann ich es definieren?)hostdependencies.cfg und servicedependencies.cfg sind leer, obwohl ich eine Abhängigkeit zwischen Hosts und Dienste zwischen definiert haben. So exportieren Abhängigkeiten in diesen nagios-Dateien?
Wie "Eltern"-Feld in Nagios hosts.cfg definieren?
Vielen Dank im Voraus.
-
Nagios export troubles
Hello!
I'm trying to export my configuration to nagios and ran into some problems.I cannot define router ip address so it is exported to nagois' hosts.cfg. Is there any way to do such a trick?
(And why router "Access" is always HTTP? What if i have ssh-only access, how can i define it?)hostdependencies.cfg and servicedependencies.cfg are empty, although I have defined a dependency between hosts and between services. How to export dependencies in these nagios files?
How to define "parents" field in Nagios' hosts.cfg?
Thanks in advance.
-
RE: International character support
Fixed it myself:
deleted utf8_encode, utf8_decode in ajax calls -
International character support
Hello!
Can i-doit be configurated to support russian (or other national) alphabet symbols natively?
Because i ran into some problems when generating reports.
When populating Infrastructure tree object names displayed normally but when i press "print preview" they are displayed in &# notation
I tried edit source code and change encoding from iso-8859-15 and latin1 to UTF-8 but without success.
Thank you in advance!