Search found 7 matches

by igorx
Thu Feb 19, 2009 10:01 pm
Forum: Plugin General
Topic: SNMPTT/SYSLOG viewer Plugin for Cacti. v 1.4.3 (2009/02/06)
Replies: 205
Views: 141545

ERROR: No CHECKBOX at "Rule enable" field

ERROR: No CHECKBOX at "Rule enable" field. But, when i set this field in mysql, rule is working, and value of this field is replaced on "true" RU: Нет chekbox'a у "Rule enable". Но если в mysql ручками в соответствующей табличке установить это поле в "1" то пр...
by igorx
Wed Dec 10, 2008 12:49 am
Forum: Plugin: (Threshold)
Topic: thold and netware volumes N/A
Replies: 1
Views: 1558

thold and netware volumes N/A

I have some problem!
by igorx
Sun Dec 07, 2008 8:51 pm
Forum: Plugin: (Threshold)
Topic: Tshold does not display curr. value on the some data sources
Replies: 1
Views: 1803

Solved!

Very interestingly! After rebooting the server "threshold" began to work properly!
Very strange...
by igorx
Sun Nov 16, 2008 9:39 pm
Forum: Plugin: (Threshold)
Topic: Tshold does not display curr. value on the some data sources
Replies: 1
Views: 1803

Tshold does not display curr. value on the some data sources

Tshold does not display current value on the some data sources The pic3 and the pic4 is show, what in one case the value is present, in the other case - values is not present. The Data Source is the server, polled locally (i.e. on this server is installed Cacti) ------------- Cacti Version - 0.8.7b ...
by igorx
Wed Sep 24, 2008 10:56 pm
Forum: Plugin Development
Topic: Problem with refresh any pages with installed MANAGE plugin
Replies: 0
Views: 3224

Problem with refresh any pages with installed MANAGE plugin

When 'MANAGE' plugin not installed or disabled, i see, for example, in 'graphs' tab html head of page: <html> <head> <title>Cacti</title> <meta http-equiv=refresh content='600'> <link href="/cacti/include/main.css" rel="stylesheet"> <link href="/cacti/images/favicon.ico"...
by igorx
Fri Sep 19, 2008 1:06 am
Forum: Plugin General
Topic: Manage Plugin 0.6.2 for monitoring networks, servers...
Replies: 948
Views: 628694

Problem with refresh any pages with installed manage plugin

When plugin not installed or disabled, i see, for example, in 'graphs' tab html head of page: <html> <head> <title>Cacti</title> <meta http-equiv=refresh content='600'> <link href="/cacti/include/main.css" rel="stylesheet"> <link href="/cacti/images/favicon.ico" rel=&qu...
by igorx
Sun Sep 14, 2008 4:21 am
Forum: Help: Linux/Unix Specific
Topic: Division by Zero
Replies: 10
Views: 5469

Try php code

Code: Select all

<?php print 3 % 0.5;?>
You get the error "div by zero". Only integer divider must be used with operator '%'

Code: Select all

if ($modulus<1) { 
         $rrd_next_step = 0; 
      }else{ 
         $rrd_next_step = $poller_interval * ($rrd_step_counter % $modulus);
}