Paul Gevers wrote: > Please help me. I only include > "/usr/share/php/adodb/adodb.inc.php". Is that wrong?
It looks like your configuration uses the deprecated mysql driver. That driver looks dead. You should be using mysqli, if I understand correctly. I would try replacing $database_type = "mysql"; by $database_type = "mysqli"; maybe? *If* this work, cacti default driver should be changed too. A quick "grep -R database_type" in cacti source seems to show that there are many instances to change... If you don't have a "database" in your config, it must be using the wrong "mysql" value: Try adding it. Does that help?