<?xml version="1.0" encoding="utf-8"?>
<!--  RSS generated by Flaimo.com RSS Builder [2012-02-03 22:48:46]  --> <rss version="2.0" xmlns:im="http://purl.org/rss/1.0/item-images/" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" >
<channel>
<docs>http://bugs.cacti.net/</docs>
<description>Mantis - ISSUES</description>
<link>http://bugs.cacti.net/</link>
<title>Mantis - ISSUES</title>
<image>
<title>Mantis - ISSUES</title>
<url>http://bugs.cacti.net/images/mantis_logo_button.gif</url>
<link>http://bugs.cacti.net/</link>
<description>Mantis - ISSUES</description>
</image>
<category>All Projects</category>
<ttl>10</ttl>
<sy:updatePeriod>hourly</sy:updatePeriod>
<sy:updateFrequency>1</sy:updateFrequency>
<sy:updateBase>2012-02-03T22:48:46-05:00</sy:updateBase>
<item>
<title>0002163: push_out_host() may be dreadfully slow</title>
<link>http://bugs.cacti.net/view.php?id=2163</link>
<description>When thre is a lot of $template_fields per-field DB query may be very slow: I have seen more than 100 seconds runtime.&lt;br /&gt;
&lt;br /&gt;
Patch attached removes this problem doing REPLACE INTO query in batches.</description>
<guid>http://bugs.cacti.net/view.php?id=2163</guid>
<author>BorisL &lt;BorisL@example.com&gt;</author>
<comments>http://bugs.cacti.net/view.php?id=2163#bugnotes</comments>
</item>
<item>
<title>0002121: Graphs in tree mode with no permission display nothing</title>
<link>http://bugs.cacti.net/view.php?id=2121</link>
<description>In tree mode, single or dual, if a graph is select for which the user has no permissions then nothing is displayed. The 'Access denied' message should be displayed. If nothing is displayed then is possible that the user will simply think something has gone wrong.&lt;br /&gt;
&lt;br /&gt;
Attached is a simple patch which displays the 'ACCESS DENIED' message if a tree leaf is selected to which the user has no permission. (All the code is actually present, it is simply an argument to the 'html_graph_thumbnail_area' and 'html_graph_area' functions that needs to be set.)&lt;br /&gt;
&lt;br /&gt;
Tested the patch, and it seems to work.</description>
<guid>http://bugs.cacti.net/view.php?id=2121</guid>
<author>jhorne &lt;jhorne@example.com&gt;</author>
<comments>http://bugs.cacti.net/view.php?id=2121#bugnotes</comments>
</item>
<item>
<title>0002162: Error when authenticating a user whom the password contains UTF8 chars</title>
<link>http://bugs.cacti.net/view.php?id=2162</link>
<description>I'm facing a strange issue with cacti 0.8.7g under Linux.&lt;br /&gt;
&lt;br /&gt;
I was used to authenticate users against LDAP and all was working well.&lt;br /&gt;
&lt;br /&gt;
It continues to work except for users that have passwords containing UTF8 chars. For example : é, è, ç...&lt;br /&gt;
&lt;br /&gt;
It throws the following error in cacti.log :&lt;br /&gt;
&lt;br /&gt;
02/01/2012 09:52:06 AM - AUTH LDAP_SEARCH: User found, DN '%s'CN=NOGUE test,OU=users,DC=Company&lt;br /&gt;
02/01/2012 09:52:06 AM - AUTH LDAP: Setting protocol version to 3&lt;br /&gt;
02/01/2012 09:52:06 AM - AUTH LDAP: General bind error, LDAP result: Decoding error&lt;br /&gt;
02/01/2012 09:52:06 AM - AUTH LOGIN: LDAP Error: General bind error, LDAP result: Decoding error</description>
<guid>http://bugs.cacti.net/view.php?id=2162</guid>
<author>elesouef2 &lt;elesouef2@example.com&gt;</author>
<comments>http://bugs.cacti.net/view.php?id=2162#bugnotes</comments>
</item>
<item>
<title>0002160: settings plugin mailer class puts email attachmets under multipart/related</title>
<link>http://bugs.cacti.net/view.php?id=2160</link>
<description>Upgraded settings plugin from v0.6 to v7.1&lt;br /&gt;
&lt;br /&gt;
Now when reportit plugin sends a report attached to an email the attachment is no longer visible in Thunderbird v9.0. &quot;View source&quot; shows it is there but it is invisible to the user.&lt;br /&gt;
&lt;br /&gt;
The problem is that mailer class is composing a multipart/related type of message and puts any attachments (inline or otherwise) under this context. The code in mailer class is written in such a way that multipart/mixed can never be used.&lt;br /&gt;
&lt;br /&gt;
RFC2387 specifies that multipart/related context &quot;is intended for compound objects consisting of several inter-related body parts.&quot; In essence this means any images to embed in HTML body for example. All actual attachments (XLS files in my example) must be contained under multipart/mixed context.&lt;br /&gt;
&lt;br /&gt;
RFC2387 also has this to say about Content-Disposition Headers:&lt;br /&gt;
&lt;br /&gt;
&quot;&quot;&quot;&lt;br /&gt;
   Using Content-Disposition headers in addition to Multipart/Related&lt;br /&gt;
   provides presentation information to User Agents that do not&lt;br /&gt;
   recognize Multipart/Related.  They will treat the multipart as&lt;br /&gt;
   Multipart/Mixed and they may find the Content-Disposition information&lt;br /&gt;
   useful.&lt;br /&gt;
&lt;br /&gt;
   With Multipart/Related however, the application processing the&lt;br /&gt;
   compound object determines the presentation style for all the&lt;br /&gt;
   contained parts.  In that context the Content-Disposition header&lt;br /&gt;
   information is redundant or even misleading.  Hence, User Agents that&lt;br /&gt;
   understand Multipart/Related shall ignore the disposition type within&lt;br /&gt;
   a Multipart/Related body part.&lt;br /&gt;
&quot;&quot;&quot;&lt;br /&gt;
&lt;br /&gt;
So relying only on Content-Disposition headers for attachments is also not good enough.&lt;br /&gt;
&lt;br /&gt;
It would seem that Thunderbird is handling the message correctly as per RFC. So settings plugin must be fixed.&lt;br /&gt;
&lt;br /&gt;
It is also valid to have nested context. For example the structure of a plain-text/html message with embedded image and an attachment would look like this:&lt;br /&gt;
&lt;br /&gt;
multipart/mixed&lt;br /&gt;
..multipart/alternative&lt;br /&gt;
....text/plain&lt;br /&gt;
....multipart/related&lt;br /&gt;
......text/html (refers to src=cid:Logo_cid)&lt;br /&gt;
......image/gif (Content-ID: &lt;Logo_cid&gt;)&lt;br /&gt;
..application/pdf (Content-Disposition: attachment)</description>
<guid>http://bugs.cacti.net/view.php?id=2160</guid>
<author>matej_v &lt;matej_v@example.com&gt;</author>
<comments>http://bugs.cacti.net/view.php?id=2160#bugnotes</comments>
</item>
<item>
<title>0001225: HowTo use the index at an arbitrary place in the OID field</title>
<link>http://bugs.cacti.net/view.php?id=1225</link>
<description>When scanning multidimensional snmptables (i.e. tables with several columns) oid_index_parse cannot be used to extract only the rows of interest as oid_index_parse only tries to match the regex. If no match occurs the record from the snmpwalk using oid_index is just altered instead of eliminiated.&lt;br /&gt;
&lt;br /&gt;
See also&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://forums.cacti.net/about26851.html&quot;&gt;http://forums.cacti.net/about26851.html&lt;/a&gt; [&lt;a href=&quot;http://forums.cacti.net/about26851.html&quot; target=&quot;_blank&quot;&gt;^&lt;/a&gt;]&lt;br /&gt;
&lt;br /&gt;
for more information.&lt;br /&gt;
&lt;br /&gt;
I have written a small change to lib/data_query.php using a new field oid_index_filter to show what mean.&lt;br /&gt;
&lt;br /&gt;
Also when using multidimensional snmptables the index extracted via the regex cannot be used as index into other tables which do not have the same number of columns. E.g. you cannot use this index to get the interface name/description. In my example I have used a new field &quot;oid_subindex&quot; which can be added to any query-&gt;fields with &lt;direction&gt;input&lt;/direction&gt; and &lt;method&gt;get&lt;/method&gt;&lt;br /&gt;
&lt;br /&gt;
Third I would like to have a possibility to add part of the extracted OID from oid_index_filter being used as &quot;text&quot; using a field with &lt;source&gt;index&lt;/index&gt;. The text could be a combination of the result of &quot;oid_subindex&quot; and either the field query-&gt;fields-&gt;&quot;name&quot;-&gt;name or a new field e.g.&lt;br /&gt;
&lt;br /&gt;
&lt;fields&gt;&lt;br /&gt;
 &lt;wirePair&gt;&lt;br /&gt;
   &lt;name&gt;Wire-Pair &lt;/name&gt;&lt;br /&gt;
   &lt;oid_subindex&gt;OID/REGEXP:.*\.([1-4])$&lt;/oid_subindex&gt;&lt;br /&gt;
....&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Which then when using |query_wirePair| translates to &quot;Wire-Pair 2&quot; in the Graph Title.&lt;br /&gt;
&lt;br /&gt;
I did a sample (for the moment without wish 3) which required only a change in the function &quot;data_query_query_script_host&quot; of the script &quot;lib/data_query.php&quot; which is attached (sorry the code is not cleaned up. &lt;br /&gt;
&lt;br /&gt;
Please also refer to the thread where this requirement has been extensively been discussed and which also contains the XML I currently use to produce the desired result&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://forums.cacti.net/about26851.html&quot;&gt;http://forums.cacti.net/about26851.html&lt;/a&gt; [&lt;a href=&quot;http://forums.cacti.net/about26851.html&quot; target=&quot;_blank&quot;&gt;^&lt;/a&gt;]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
I have tested this using hdsl2Shlds Tables described in RFC4319.</description>
<guid>http://bugs.cacti.net/view.php?id=1225</guid>
<author>cbscpe &lt;cbscpe@example.com&gt;</author>
<comments>http://bugs.cacti.net/view.php?id=1225#bugnotes</comments>
</item>
<item>
<title>0002161: Graph management &quot;graph()&quot; function conflicts with graphviz PECL extension’s graph()</title>
<link>http://bugs.cacti.net/view.php?id=2161</link>
<description>When running Cacti on a web server that also has the GraphViz PECL extension enabled, the Graph Management page will not load because it uses the function/method name &quot;graph()&quot;, which is also used by the GraphViz extension.   Unfortunately, I need the GraphViz extension loaded on this server because the same web server also runs NagVis and other monitoring websites.</description>
<guid>http://bugs.cacti.net/view.php?id=2161</guid>
<author>jdmatlock &lt;jdmatlock@example.com&gt;</author>
<comments>http://bugs.cacti.net/view.php?id=2161#bugnotes</comments>
</item>
<item>
<title>0002159: cacti.sql not fully compliant with strict SQL mode</title>
<link>http://bugs.cacti.net/view.php?id=2159</link>
<description>Hello,&lt;br /&gt;
&lt;br /&gt;
It's seems than cacti.sql database is not fully compliant with strict SQL mode.&lt;br /&gt;
If I apply fully strict SQL mode, when I import cacti.sql on cacti database I've this error :&lt;br /&gt;
&lt;br /&gt;
ERROR 1067 (42000) at line 1846: Invalid default value for 'status_fail_date'&lt;br /&gt;
&lt;br /&gt;
and I've only these tables :&lt;br /&gt;
&lt;br /&gt;
mysql&gt; show tables;&lt;br /&gt;
+---------------------------+&lt;br /&gt;
| Tables_in_cacti           |&lt;br /&gt;
+---------------------------+&lt;br /&gt;
| cdef                      |&lt;br /&gt;
| cdef_items                |&lt;br /&gt;
| colors                    |&lt;br /&gt;
| data_input                |&lt;br /&gt;
| data_input_data           |&lt;br /&gt;
| data_input_fields         |&lt;br /&gt;
| data_local                |&lt;br /&gt;
| data_template             |&lt;br /&gt;
| data_template_data        |&lt;br /&gt;
| data_template_data_rra    |&lt;br /&gt;
| data_template_rrd         |&lt;br /&gt;
| graph_local               |&lt;br /&gt;
| graph_template_input      |&lt;br /&gt;
| graph_template_input_defs |&lt;br /&gt;
| graph_templates           |&lt;br /&gt;
| graph_templates_gprint    |&lt;br /&gt;
| graph_templates_graph     |&lt;br /&gt;
| graph_templates_item      |&lt;br /&gt;
| graph_tree                |&lt;br /&gt;
| graph_tree_items          |&lt;br /&gt;
+---------------------------+&lt;br /&gt;
20 rows in set (0.01 sec)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
If I disable NO_ZERO_DATE variable on strict SQL mode :&lt;br /&gt;
&lt;br /&gt;
=&gt; no error and I've all tables on cacti database :&lt;br /&gt;
&lt;br /&gt;
+---------------------------+&lt;br /&gt;
| Tables_in_cacti           |&lt;br /&gt;
+---------------------------+&lt;br /&gt;
| cdef                      |&lt;br /&gt;
| cdef_items                |&lt;br /&gt;
| colors                    |&lt;br /&gt;
| data_input                |&lt;br /&gt;
| data_input_data           |&lt;br /&gt;
| data_input_fields         |&lt;br /&gt;
| data_local                |&lt;br /&gt;
| data_template             |&lt;br /&gt;
| data_template_data        |&lt;br /&gt;
| data_template_data_rra    |&lt;br /&gt;
| data_template_rrd         |&lt;br /&gt;
| graph_local               |&lt;br /&gt;
| graph_template_input      |&lt;br /&gt;
| graph_template_input_defs |&lt;br /&gt;
| graph_templates           |&lt;br /&gt;
| graph_templates_gprint    |&lt;br /&gt;
| graph_templates_graph     |&lt;br /&gt;
| graph_templates_item      |&lt;br /&gt;
| graph_tree                |&lt;br /&gt;
| graph_tree_items          |&lt;br /&gt;
| host                      |&lt;br /&gt;
| host_graph                |&lt;br /&gt;
| host_snmp_cache           |&lt;br /&gt;
| host_snmp_query           |&lt;br /&gt;
| host_template             |&lt;br /&gt;
| host_template_graph       |&lt;br /&gt;
| host_template_snmp_query  |&lt;br /&gt;
| plugin_config             |&lt;br /&gt;
| plugin_db_changes         |&lt;br /&gt;
| plugin_hooks              |&lt;br /&gt;
| plugin_realms             |&lt;br /&gt;
| poller                    |&lt;br /&gt;
| poller_command            |&lt;br /&gt;
| poller_item               |&lt;br /&gt;
| poller_output             |&lt;br /&gt;
| poller_reindex            |&lt;br /&gt;
| poller_time               |&lt;br /&gt;
| rra                       |&lt;br /&gt;
| rra_cf                    |&lt;br /&gt;
| settings                  |&lt;br /&gt;
| settings_graphs           |&lt;br /&gt;
| settings_tree             |&lt;br /&gt;
| snmp_query                |&lt;br /&gt;
| snmp_query_graph          |&lt;br /&gt;
| snmp_query_graph_rrd      |&lt;br /&gt;
| snmp_query_graph_rrd_sv   |&lt;br /&gt;
| snmp_query_graph_sv       |&lt;br /&gt;
| user_auth                 |&lt;br /&gt;
| user_auth_perms           |&lt;br /&gt;
| user_auth_realm           |&lt;br /&gt;
| user_log                  |&lt;br /&gt;
| version                   |&lt;br /&gt;
+---------------------------+&lt;br /&gt;
52 rows in set (0.00 sec)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
It's same for boost plugin (memory.sql)&lt;br /&gt;
&lt;br /&gt;
error with fully strict SQL mode :&lt;br /&gt;
&lt;br /&gt;
ERROR 1067 (42000) at line 2: Invalid default value for 'time'&lt;br /&gt;
&lt;br /&gt;
If I remove NO_ZERO_DATE from strict SQL mode all are ok&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Could you please check database?&lt;br /&gt;
&lt;br /&gt;
Thanks in advanced</description>
<guid>http://bugs.cacti.net/view.php?id=2159</guid>
<author>c3226026 &lt;c3226026@example.com&gt;</author>
<comments>http://bugs.cacti.net/view.php?id=2159#bugnotes</comments>
</item>
<item>
<title>0002153: Cant search for patterns containing a forward-slash</title>
<link>http://bugs.cacti.net/view.php?id=2153</link>
<description>Hey all,&lt;br /&gt;
&lt;br /&gt;
Seems that the use of / as the delimiter in the preg_replace function causes a bug when searching using patterns that also contain a forward-slash. When I search for things like: Gi9/1 (cisco router interace) the search seems to work (the number of results are correct), but the &quot;highlighting&quot; function which changes the background color of the searched-for part of the trunkgroup name yellow causes the graph name to not display at all (broken HTML) . See my screenshot. Ross Kusler</description>
<guid>http://bugs.cacti.net/view.php?id=2153</guid>
<author>rosskus &lt;rosskus@example.com&gt;</author>
<comments>http://bugs.cacti.net/view.php?id=2153#bugnotes</comments>
</item>
<item>
<title>0002157: Aggregate breaks graph filtering in Graph Managemnet</title>
<link>http://bugs.cacti.net/view.php?id=2157</link>
<description>Aggregate plugin uses hook graphs_sql_where and modifies graphs SQL query to filter out graphs without an assigned host and template.&lt;br /&gt;
&lt;br /&gt;
I assume this was made to prevent a user editing aggregate graphs by hand.&lt;br /&gt;
&lt;br /&gt;
Unfortunately this means it is also harder or impossible to run any graph actions for these graphs.&lt;br /&gt;
&lt;br /&gt;
Also a user may very well have some hand crafted graphs without an assigned host or template. These graphs would be invisible to the user.&lt;br /&gt;
&lt;br /&gt;
I propose the use of this hook be removed from aggregate plugin.</description>
<guid>http://bugs.cacti.net/view.php?id=2157</guid>
<author>matej_v &lt;matej_v@example.com&gt;</author>
<comments>http://bugs.cacti.net/view.php?id=2157#bugnotes</comments>
</item>
<item>
<title>0002158: Minor changes to grammar of displayed messages</title>
<link>http://bugs.cacti.net/view.php?id=2158</link>
<description>In the 'Console-&gt;Settings-&gt;Visual' the two 'Log management' lines displayed are not well worded (poor grammar). Attached is a patch to correct this.</description>
<guid>http://bugs.cacti.net/view.php?id=2158</guid>
<author>jhorne &lt;jhorne@example.com&gt;</author>
<comments>http://bugs.cacti.net/view.php?id=2158#bugnotes</comments>
</item>
<item>
<title>0002149: Cummultive patch from BorisL</title>
<link>http://bugs.cacti.net/view.php?id=2149</link>
<description>The following patch accumulates all my local modifications to 087i. Not of all of them are mine (Host selector for example). Most of modifications are made for sake of Cacti stable &amp; quick running on a very big environment.&lt;br /&gt;
Notable features (not in order):&lt;br /&gt;
 - reindex_index, reindex_value support (&lt;a href=&quot;http://bugs.cacti.net/view.php?id=1225&quot;&gt;0001225&lt;/a&gt;)&lt;br /&gt;
 - SNMP class support (welcome in php 5.4.0), class replacement for previous versions&lt;br /&gt;
 - autologin guest user (&lt;a href=&quot;http://bugs.cacti.net/view.php?id=1462&quot;&gt;0001462&lt;/a&gt;)&lt;br /&gt;
 - polling time column support, max_data_rate support (&lt;a href=&quot;http://bugs.cacti.net/view.php?id=2070&quot;&gt;0002070&lt;/a&gt;)&lt;br /&gt;
 - advanced graph filter (&lt;a href=&quot;http://bugs.cacti.net/view.php?id=2070&quot;&gt;0002070&lt;/a&gt;)&lt;br /&gt;
 - a number of speedups in poller (poller.php, lib/poller.php)</description>
<guid>http://bugs.cacti.net/view.php?id=2149</guid>
<author>BorisL &lt;BorisL@example.com&gt;</author>
<comments>http://bugs.cacti.net/view.php?id=2149#bugnotes</comments>
</item>
<item>
<title>0002155: More options to adjust the look of aggregate graps</title>
<link>http://bugs.cacti.net/view.php?id=2155</link>
<description>As discussed on the forums [&lt;a href=&quot;http://forums.cacti.net/viewtopic.php?f=14&amp;t=45853],&quot;&gt;http://forums.cacti.net/viewtopic.php?f=14&amp;t=45853],&lt;/a&gt; [&lt;a href=&quot;http://forums.cacti.net/viewtopic.php?f=14&amp;t=45853],&quot; target=&quot;_blank&quot;&gt;^&lt;/a&gt;] see there for en example of new features.&lt;br /&gt;
&lt;br /&gt;
This patch builds on the current trunk of aggregate plugin to add more features to change the look-n-feel of aggregate graphs, without the need to change templates of graphs you want to aggregate.&lt;br /&gt;
&lt;br /&gt;
Change summary:&lt;br /&gt;
* You can change graph configuration values (size, auto scale...) in aggregate template.&lt;br /&gt;
* You can override item type and CDEF for each graph item from original graph template.&lt;br /&gt;
* When using &quot;Print all Legend Items&quot; an extra empty line is inserted before Total lines.&lt;br /&gt;
* A bunch of bugfixes.&lt;br /&gt;
* A lot of code cleanup (moving duplicate code to functions, removing unused code).&lt;br /&gt;
&lt;br /&gt;
I have done quite a bit of testing and am fairly confident I have not broken any existing functionality. Though it is still possible to generate broken graphs (or graphs that do not make sense) with the &quot;right&quot; combination of settings.</description>
<guid>http://bugs.cacti.net/view.php?id=2155</guid>
<author>matej_v &lt;matej_v@example.com&gt;</author>
<comments>http://bugs.cacti.net/view.php?id=2155#bugnotes</comments>
</item>
<item>
<title>0002142: Graph Item sequence numbers in aggregate graph are wrong.</title>
<link>http://bugs.cacti.net/view.php?id=2142</link>
<description>When saving aggregate graph items to DB the sequence numbers are assigned form 1 as they were POSTed from the editor from. Some items have only checkboxes in the form (GPRINTs ...) and are not POSTed if not checked. This can result in aggregate item parameters (color template, skip...) being applied to wrong graph items in aggregate graph.&lt;br /&gt;
&lt;br /&gt;
This applies to aggregate graph and aggregate templates.&lt;br /&gt;
&lt;br /&gt;
Attached patch:&lt;br /&gt;
 * When saving aggregate graph (template) items we lookup source graph (template) item sequence and store with to aggregate item.</description>
<guid>http://bugs.cacti.net/view.php?id=2142</guid>
<author>matej_v &lt;matej_v@example.com&gt;</author>
<comments>http://bugs.cacti.net/view.php?id=2142#bugnotes</comments>
</item>
<item>
<title>0002118: &quot;Total Type&quot; property of Aggregate Graph is not saved</title>
<link>http://bugs.cacti.net/view.php?id=2118</link>
<description>In aggregate_graphs.php/form_save() the $_POST field &quot;total_type&quot; never gets called into $save array and is not saved to plugin_aggregate_graphs table.</description>
<guid>http://bugs.cacti.net/view.php?id=2118</guid>
<author>matej_v &lt;matej_v@example.com&gt;</author>
<comments>http://bugs.cacti.net/view.php?id=2118#bugnotes</comments>
</item>
<item>
<title>0002117: Graph reordering does not work</title>
<link>http://bugs.cacti.net/view.php?id=2117</link>
<description>Two issues with this:&lt;br /&gt;
* in aggregate_reorder_ds_graph the SQL to get data_template_rrd unsed in graph was wrong when $base was 0 (see additional info for details)&lt;br /&gt;
&lt;br /&gt;
* in aggregate_create_update in array $attribs key &quot;order_type&quot; was used instead of &quot;reorder&quot;</description>
<guid>http://bugs.cacti.net/view.php?id=2117</guid>
<author>matej_v &lt;matej_v@example.com&gt;</author>
<comments>http://bugs.cacti.net/view.php?id=2117#bugnotes</comments>
</item>
<item>
<title>0002116: Colors from Color Template are not applied in correct order</title>
<link>http://bugs.cacti.net/view.php?id=2116</link>
<description>Currently colors are applied to graph items in order of id in plugin_aggregate_color_template_items instead of sequence. There is a &quot;SORT BY sequence&quot; missing in function aggregate_graphs_insert_graph_items. Patch attached.</description>
<guid>http://bugs.cacti.net/view.php?id=2116</guid>
<author>matej_v &lt;matej_v@example.com&gt;</author>
<comments>http://bugs.cacti.net/view.php?id=2116#bugnotes</comments>
</item>
<item>
<title>0002154: When adding a new template cacti stops graphing</title>
<link>http://bugs.cacti.net/view.php?id=2154</link>
<description>When adding new graphs or templates randomly cacti stops graphing.&lt;br /&gt;
Some of the graphs resume after refresh but not all.</description>
<guid>http://bugs.cacti.net/view.php?id=2154</guid>
<author>grappa &lt;grappa@example.com&gt;</author>
<comments>http://bugs.cacti.net/view.php?id=2154#bugnotes</comments>
</item>
<item>
<title>0002152: Issue with filter on graphs_new.php</title>
<link>http://bugs.cacti.net/view.php?id=2152</link>
<description>When you need to filter out lines from the data_query containing '/',  the query result is empty rows  with checkbox.&lt;br /&gt;
This issue affects filtering, in 'Graph Management' and 'Create Graphs for this Host'</description>
<guid>http://bugs.cacti.net/view.php?id=2152</guid>
<author>pawelb1973 &lt;pawelb1973@example.com&gt;</author>
<comments>http://bugs.cacti.net/view.php?id=2152#bugnotes</comments>
</item>
<item>
<title>0002151: When building HTML forms with sub_checkbox on_change parameter is not used</title>
<link>http://bugs.cacti.net/view.php?id=2151</link>
<description>When building forms a field label can have a sub-checkbox. An example of this is &quot;Use Per-Graph Value (Ignore this Value)&quot; checkbox in templates. &lt;br /&gt;
&lt;br /&gt;
Looking at the code in html_form.php this sub-checkbox should be able to have a on_change parameter with JS code that will be rendered to onChange parameter of the checkbox. But this is currently not possible, because the order of arguments to form_checkbox() is wrong.&lt;br /&gt;
&lt;br /&gt;
Also the comments for form_checkbox function need updating.&lt;br /&gt;
&lt;br /&gt;
Patch attached.</description>
<guid>http://bugs.cacti.net/view.php?id=2151</guid>
<author>matej_v &lt;matej_v@example.com&gt;</author>
<comments>http://bugs.cacti.net/view.php?id=2151#bugnotes</comments>
</item>
<item>
<title>0002126: Syslog 1.22 - e-mail notification issues</title>
<link>http://bugs.cacti.net/view.php?id=2126</link>
<description>In 1.22-2 threshold based alerts are not sending e-mail notifications when re-alert cycle is set, even though they appear in the &quot;Alert Log&quot; tab. With re-alert cycle disabled, e-mail are getting sent. &lt;br /&gt;
&lt;br /&gt;
The issue appeared in version 1.22. In 1.21 this feature was functional.</description>
<guid>http://bugs.cacti.net/view.php?id=2126</guid>
<author>pmacct &lt;pmacct@example.com&gt;</author>
<comments>http://bugs.cacti.net/view.php?id=2126#bugnotes</comments>
</item>
<item>
<title>0002150: usort_data_query_index() is broken</title>
<link>http://bugs.cacti.net/view.php?id=2150</link>
<description>An error was introduced making replacement s/split/explode/ in usort_data_query_index().&lt;br /&gt;
Slash should not be escaped for use in explode.</description>
<guid>http://bugs.cacti.net/view.php?id=2150</guid>
<author>BorisL &lt;BorisL@example.com&gt;</author>
<comments>http://bugs.cacti.net/view.php?id=2150#bugnotes</comments>
</item>
<item>
<title>0001462: Autologin guest user</title>
<link>http://bugs.cacti.net/view.php?id=1462</link>
<description>Here is patch that disables build-in authorisation for guest user - it is very usefull in installation when everybody can view graphs.</description>
<guid>http://bugs.cacti.net/view.php?id=1462</guid>
<author>BorisL &lt;BorisL@example.com&gt;</author>
<comments>http://bugs.cacti.net/view.php?id=1462#bugnotes</comments>
</item>
<item>
<title>0001337: Form to filter for graphs in host view mode</title>
<link>http://bugs.cacti.net/view.php?id=1337</link>
<description>This patch adds a form that allows to filter graphs that are associated with host when it 'host' view mode.&lt;br /&gt;
The patch seems to be usefull when there are a lot of graphs for some host.</description>
<guid>http://bugs.cacti.net/view.php?id=1337</guid>
<author>BorisL &lt;BorisL@example.com&gt;</author>
<comments>http://bugs.cacti.net/view.php?id=1337#bugnotes</comments>
</item>
<item>
<title>0002148: Multiple trees are not cycled correctly</title>
<link>http://bugs.cacti.net/view.php?id=2148</link>
<description>When using multiple trees 'cycle' does not remember which tree was being looked at if the user moves off the page (e.g. to 'Console' or 'Graphs'), and then returns to 'cycle'. It always returns to the first tree (id = 1), which is typically the 'Default tree' (but not necessarily so).&lt;br /&gt;
&lt;br /&gt;
Additionally, the default tree to be shown set in the cycle 'settings' is not remembered. If the user has no permissions to that default tree, then he/she simply gets the 'No graphs matching criteria' message, until the plugin has gone through one timed cycle (by default , after 1 minute).&lt;br /&gt;
&lt;br /&gt;
The problem is that the relevant tree/leaf is not set in the javascript (in cycle.php), but is reset to the null string in cycle.js. As such whenever the user clicks on 'cycle', the tree settings are lost and replaced by the null string. The code then looks for the first tree to get started.&lt;br /&gt;
&lt;br /&gt;
The solution is relatively simple: set the 'tree' and 'leaf' variables when the user clicks on 'cycle', and then never reset them. The values will be sent back and forth until the user changes them. We initialise them using the values set in settings. The rest of the code is already in place to handle when the user changes the tree and/or leaf.&lt;br /&gt;
&lt;br /&gt;
Two small patches are attached. These have been tested, and work well.</description>
<guid>http://bugs.cacti.net/view.php?id=2148</guid>
<author>jhorne &lt;jhorne@example.com&gt;</author>
<comments>http://bugs.cacti.net/view.php?id=2148#bugnotes</comments>
</item>
<item>
<title>0002147: Change default tree cycle from 'Top level' to 'All levels'</title>
<link>http://bugs.cacti.net/view.php?id=2147</link>
<description>Using multiple trees, by default cycle will try and use the 'Top level'. In our case the top level is a header, as is the first branch, only under that are there graphs. As such 'top level' gives a 'No graphs matching criteria' message, whereas 'All levels' shows the graphs.&lt;br /&gt;
&lt;br /&gt;
I'm simply providing this as a suggestion that the default is changed to 'All levels' since that should show graphs in all cases (?), whereas 'Top level' may or may not (and 'may not' occurs in our case).&lt;br /&gt;
&lt;br /&gt;
Attached is a trivial patch for this.</description>
<guid>http://bugs.cacti.net/view.php?id=2147</guid>
<author>jhorne &lt;jhorne@example.com&gt;</author>
<comments>http://bugs.cacti.net/view.php?id=2147#bugnotes</comments>
</item>
</channel>
</rss>

