Ad blocker detected: Our website is made possible by displaying online advertisements to our visitors. Please consider supporting us by disabling your ad blocker on our website.
Thanks for your great job..
I am afraided but I cann't creat sites also images of device i listed on device managing manu do not display on Device window..
OK, i just upgraded from 0.5.0 to 0.5.1 and when i go to the Misc tab and tell it to check tables this is what i get. What can i do to fix the table errors?
I actually forgot to post back, i got most of the errors fixed, with the exception of 1. It appeared that i had forgotten to put in the default email address for the notifications. Once i put that in, most of the errors went away. Now the only thing that has an error is:
Also, is there any way get some clearer icons for this? What about ones that auto-size? I have a couple of hosts that have MANY TCP ports that are being monitored, and looks like it starts to create a second icon.
App - You are getting this error because you have tables missing. One of the most important ones is manage_host_services, which is shown as OK (not here)- this actually means it's missing some settings. Insert the following into phpMyAdmin
CREATE TABLE manage_host_services ( id mediumint(8) unsigned NOT NULL default '0', services mediumint(8) unsigned NOT NULL default '0', statut text);
ALTER TABLE manage_host_services RENAME manage_tcp;
INSERT INTO settings VALUES ('manage_global_email', '');
The error message for the mail settings when you choose a device to manage should also go away once these have been applied.
Let me know how you get on.
Cacti Version 0.8.8b Cacti OS Ubuntu LTS RRDTool Version RRDTool 1.4.7 Poller Information Type SPINE 0.8.8b
That is a bcmath function. You need the PHP module called bc. Or, Gilles will have to change the bcmod function to use the "internal" modulus function in PHP which is the "%" operator I think.
Therefore:
10 % 10 == 0
and
15 % 10 == 5
TheWitness
True understanding begins only when we realize how little we truly understand...
It's not a PHP5 issue, he has some bcmath call's that were not compiled into this users version of PHP. BCMath is not that popular mainly because it is in the core of PHP now.
I'll take a quick look at his code, although I wanted to get it into the standard format, he's moving to quickly for me to keep up. Maybe it will settle down and I can spend another weekend on it.
TheWitness
True understanding begins only when we realize how little we truly understand...