Cacti / plugin_weathermap

Weathermap for Cacti 1.x
MIT License
80 stars 25 forks source link

weathermap CLI broken #134

Closed bsyd closed 10 months ago

bsyd commented 10 months ago

The weathermap CLI is currently not usable.

[root@cacti weathermap]# php weathermap
PHP Fatal error:  Uncaught Error: Call to undefined function cacti_sizeof() in /usr/share/cacti/plugins/weathermap/weathermap:65
Stack trace:
#0 {main}
  thrown in /usr/share/cacti/plugins/weathermap/weathermap on line 65

Adding the following line fixes the execution : require_once('../../include/global.php');

Here is the patch. weathermap.patch

TheWitness commented 10 months ago

Thanks for that. Better to include cli_check.php. can you do a pull request?

bsyd commented 10 months ago

Here you go. #135