I'm upgrade complete thank you... please explain how to run this mapHowie wrote:Please upgrade then. It's fixed in 0.81gundamx wrote:I'm user Weathermap version 0.8Howie wrote: Which version of Weathermap? This should be fixed in 0.81...
PHP Network Weathermap 0.8 (now 0.9)
Moderators: Developers, Moderators
Re: can't save output file
- Howie
- Cacti Guru User
- Posts: 5508
- Joined: Thu Sep 16, 2004 5:53 am
- Location: United Kingdom
- Contact:
Re: can't save output file
Please read the manual I spent over a week of my spare time writing.gundamx wrote: I'm upgrade complete thank you... please explain how to run this map
Anything not in the manual, please ask.
Weathermap 0.98a is out! & QuickTree 1.0. Superlinks is over there now (and built-in to Cacti 1.x).
Some Other Cacti tweaks, including strip-graphs, icons and snmp/netflow stuff.
(Let me know if you have UK DevOps or Network Ops opportunities, too!)
Some Other Cacti tweaks, including strip-graphs, icons and snmp/netflow stuff.
(Let me know if you have UK DevOps or Network Ops opportunities, too!)
Re: can't save output file
thank you for your support me i have one question i complete create filename.conf map but i can't save to png file or html file please help meHowie wrote:Please read the manual I spent over a week of my spare time writing.gundamx wrote: I'm upgrade complete thank you... please explain how to run this map
Anything not in the manual, please ask.
- Howie
- Cacti Guru User
- Posts: 5508
- Joined: Thu Sep 16, 2004 5:53 am
- Location: United Kingdom
- Contact:
Re: can't save output file
Check the permissions of the configs and output folders.gundamx wrote: thank you for your support me i have one question i complete create filename.conf map but i can't save to png file or html file please help me
http://wotsit.thingy.com/haj/cacti/php- ... loneeditor
Weathermap 0.98a is out! & QuickTree 1.0. Superlinks is over there now (and built-in to Cacti 1.x).
Some Other Cacti tweaks, including strip-graphs, icons and snmp/netflow stuff.
(Let me know if you have UK DevOps or Network Ops opportunities, too!)
Some Other Cacti tweaks, including strip-graphs, icons and snmp/netflow stuff.
(Let me know if you have UK DevOps or Network Ops opportunities, too!)
Re: can't save output file
Yes... I have setup permissions but can't save to output foldersHowie wrote:Check the permissions of the configs and output folders.gundamx wrote: thank you for your support me i have one question i complete create filename.conf map but i can't save to png file or html file please help me
http://wotsit.thingy.com/haj/cacti/php- ... loneeditor
I use plugin on cacti
- Howie
- Cacti Guru User
- Posts: 5508
- Joined: Thu Sep 16, 2004 5:53 am
- Location: United Kingdom
- Contact:
Re: can't save output file
You don't save anything to the output folder. The plugin will do that when the poller process runs (every 5 minutes). It will take any maps you have added (Management..Weathermaps..Add), and produce three output files for each one.gundamx wrote: Yes... I have setup permissions but can't save to output folders
I use plugin on cacti
If you have added a map and it doesn't do that, then have a look in the Cacti log file for lines starting with "WEATHERMAP:". There should be a useful error message in there if something is wrong.
If there is nothing at all, try disabling other plugins in your Cacti config.php and waiting for a poller-cycle. If an earlier plugin fails (especially Reports), then Weathermap doesn't run at all.
If there are no errors (only 'normal' messages), then try turning on Cacti DEBUG logging for one poller-cycle, and looking again. It should give you some clue.
Weathermap 0.98a is out! & QuickTree 1.0. Superlinks is over there now (and built-in to Cacti 1.x).
Some Other Cacti tweaks, including strip-graphs, icons and snmp/netflow stuff.
(Let me know if you have UK DevOps or Network Ops opportunities, too!)
Some Other Cacti tweaks, including strip-graphs, icons and snmp/netflow stuff.
(Let me know if you have UK DevOps or Network Ops opportunities, too!)
I follow this instruction for your recomment but i have error. in cacti only plugin weathermap
04/21/2006 10:08:42 AM - CMDPHP: Poller[0] ERROR: SQL Exec Failed "insert into weathermap_maps (configfile,titlecache,active) VALUES ('minor.conf','(no title)','on')"
04/21/2006 10:05:43 AM - WEATHERMAP: Poller[0] Weathermap has left the building
04/21/2006 10:05:43 AM - WEATHERMAP: Poller[0] Normal logging mode. If things are going wrong, turn on DEBUG in Cacti for more information!
04/21/2006 10:05:43 AM - WEATHERMAP: Poller[0] Weathermap 0.81 in da house
04/21/2006 10:05:43 AM - SYSTEM STATS: Time:42.3024 Method:cmd.php Processes:1 Threads:N/A Hosts:17 HostsPerProcess:17 DataSources:196 RRDsProcessed:130
04/21/2006 10:08:42 AM - CMDPHP: Poller[0] ERROR: SQL Exec Failed "insert into weathermap_maps (configfile,titlecache,active) VALUES ('minor.conf','(no title)','on')"
04/21/2006 10:05:43 AM - WEATHERMAP: Poller[0] Weathermap has left the building
04/21/2006 10:05:43 AM - WEATHERMAP: Poller[0] Normal logging mode. If things are going wrong, turn on DEBUG in Cacti for more information!
04/21/2006 10:05:43 AM - WEATHERMAP: Poller[0] Weathermap 0.81 in da house
04/21/2006 10:05:43 AM - SYSTEM STATS: Time:42.3024 Method:cmd.php Processes:1 Threads:N/A Hosts:17 HostsPerProcess:17 DataSources:196 RRDsProcessed:130
Its possible that your tables aren't auto-created. Have you checked to verify that the table weathermap_maps doesn't exist? Or if it does exist, can you post the contents?gundamx wrote:I follow this instruction for your recomment but i have error. in cacti only plugin weathermap
04/21/2006 10:08:42 AM - CMDPHP: Poller[0] ERROR: SQL Exec Failed "insert into weathermap_maps (configfile,titlecache,active) VALUES ('minor.conf','(no title)','on')"
You probably already noticed, this but incase you haven't. I found a very minor bug that causes a notice error when running the poller manually.
Notice: Use of undefined constant WEATHERMAP - assumed 'WEATHERMAP' in /var/www/html/cacti/plugins/weathermap/setup.php on line 273
The piece of code causing it is
should be
Notice: Use of undefined constant WEATHERMAP - assumed 'WEATHERMAP' in /var/www/html/cacti/plugins/weathermap/setup.php on line 273
The piece of code causing it is
Code: Select all
cacti_log("Normal logging mode. If things are going wrong, turn on DEBUG in Cacti for more information!", true, WEATHERMAP);
Code: Select all
cacti_log("Normal logging mode. If things are going wrong, turn on DEBUG in Cacti for more information!", true, "WEATHERMAP");
In data have table weathermap_mapscigamit wrote:Its possible that your tables aren't auto-created. Have you checked to verify that the table weathermap_maps doesn't exist? Or if it does exist, can you post the contents?gundamx wrote:I follow this instruction for your recomment but i have error. in cacti only plugin weathermap
04/21/2006 10:08:42 AM - CMDPHP: Poller[0] ERROR: SQL Exec Failed "insert into weathermap_maps (configfile,titlecache,active) VALUES ('minor.conf','(no title)','on')"
- Howie
- Cacti Guru User
- Posts: 5508
- Joined: Thu Sep 16, 2004 5:53 am
- Location: United Kingdom
- Contact:
Thanks! and how ironic it's in the very message about things going wrongcigamit wrote:You probably already noticed, this but incase you haven't. I found a very minor bug that causes a notice error when running the poller manually.
Weathermap 0.98a is out! & QuickTree 1.0. Superlinks is over there now (and built-in to Cacti 1.x).
Some Other Cacti tweaks, including strip-graphs, icons and snmp/netflow stuff.
(Let me know if you have UK DevOps or Network Ops opportunities, too!)
Some Other Cacti tweaks, including strip-graphs, icons and snmp/netflow stuff.
(Let me know if you have UK DevOps or Network Ops opportunities, too!)
- Howie
- Cacti Guru User
- Posts: 5508
- Joined: Thu Sep 16, 2004 5:53 am
- Location: United Kingdom
- Contact:
But you don't have any rows in that table, do you?gundamx wrote:In data have table weathermap_mapscigamit wrote:Its possible that your tables aren't auto-created. Have you checked to verify that the table weathermap_maps doesn't exist? Or if it does exist, can you post the contents?gundamx wrote:I follow this instruction for your recomment but i have error. in cacti only plugin weathermap
04/21/2006 10:08:42 AM - CMDPHP: Poller[0] ERROR: SQL Exec Failed "insert into weathermap_maps (configfile,titlecache,active) VALUES ('minor.conf','(no title)','on')"
You are the third person to report this. I still don't understand what causes it, but I believe that changing MySQL version fixed it for at least one of the other people with 0.8. I deliberately changed this section of the code so it would log the error, hoping that it would make it obvious what was wrong, but I can't see it.
Could you try one thing, please?
Please change line 390 of weathermap-plugin-mgmt.php from
Code: Select all
$SQL = "insert into weathermap_maps (configfile,titlecache,active) VALUES ('$file','$title','on')";
Code: Select all
$SQL = "insert into weathermap_maps (configfile,titlecache,active) VALUES ('$file','$title','on');";
This error is something to do with some versions of MySQL being more fussy than others, and that's the only thing I can think of that might upset it. I haven't been able to recreate the error myself with MySQL 4.x or 5.x...
Weathermap 0.98a is out! & QuickTree 1.0. Superlinks is over there now (and built-in to Cacti 1.x).
Some Other Cacti tweaks, including strip-graphs, icons and snmp/netflow stuff.
(Let me know if you have UK DevOps or Network Ops opportunities, too!)
Some Other Cacti tweaks, including strip-graphs, icons and snmp/netflow stuff.
(Let me know if you have UK DevOps or Network Ops opportunities, too!)
Re: can't save output file
Howie wrote:You don't save anything to the output folder. The plugin will do that when the poller process runs (every 5 minutes). It will take any maps you have added (Management..Weathermaps..Add), and produce three output files for each one.gundamx wrote: Yes... I have setup permissions but can't save to output folders
I use plugin on cacti
If you have added a map and it doesn't do that, then have a look in the Cacti log file for lines starting with "WEATHERMAP:". There should be a useful error message in there if something is wrong.
If there is nothing at all, try disabling other plugins in your Cacti config.php and waiting for a poller-cycle. If an earlier plugin fails (especially Reports), then Weathermap doesn't run at all.
If there are no errors (only 'normal' messages), then try turning on Cacti DEBUG logging for one poller-cycle, and looking again. It should give you some clue.
Hi all
I have error in cacit log when i add map
04/21/2006 10:08:42 AM - CMDPHP: Poller[0] ERROR: SQL Exec Failed "insert into weathermap_maps (configfile,titlecache,active) VALUES ('minor.conf','(no title)','on')"
Re: can't save output file
Howie wrote:You don't save anything to the output folder. The plugin will do that when the poller process runs (every 5 minutes). It will take any maps you have added (Management..Weathermaps..Add), and produce three output files for each one.gundamx wrote: Yes... I have setup permissions but can't save to output folders
I use plugin on cacti
If you have added a map and it doesn't do that, then have a look in the Cacti log file for lines starting with "WEATHERMAP:". There should be a useful error message in there if something is wrong.
If there is nothing at all, try disabling other plugins in your Cacti config.php and waiting for a poller-cycle. If an earlier plugin fails (especially Reports), then Weathermap doesn't run at all.
If there are no errors (only 'normal' messages), then try turning on Cacti DEBUG logging for one poller-cycle, and looking again. It should give you some clue.
Hi all
I have error in cacit log when i add map
04/21/2006 10:08:42 AM - CMDPHP: Poller[0] ERROR: SQL Exec Failed "insert into weathermap_maps (configfile,titlecache,active) VALUES ('minor.conf','(no title)','on')"
HEllo,
Congratulation for this beautiful tool.
Is it possible to display data not related to traffic, for example, client wireless client associations?
see my previous post:
http://forums.cacti.net/viewtopic.php?t ... highlight=
Thanks
Qwertz
Congratulation for this beautiful tool.
Is it possible to display data not related to traffic, for example, client wireless client associations?
see my previous post:
http://forums.cacti.net/viewtopic.php?t ... highlight=
Thanks
Qwertz
Who is online
Users browsing this forum: No registered users and 0 guests