1 | 1 | simandl | <?php |
2 | | | global $config; |
3 | | | global $weathermap_debugging, $WEATHERMAP_VERSION; |
4 | | | |
5 | | | $cacti_base = "C:/Program Files/xampp/htdocs/cacti/"; |
6 | | | |
7 | | | include_once($cacti_base."/include/config.php"); |
8 | | | |
9 | | | include_once($config["library_path"] . DIRECTORY_SEPARATOR."database.php"); |
10 | | | include_once(dirname(__FILE__).DIRECTORY_SEPARATOR."setup.php"); |
11 | | | include_once(dirname(__FILE__).DIRECTORY_SEPARATOR."lib".DIRECTORY_SEPARATOR."poller-common.php"); |
12 | | | |
13 | | | weathermap_setup_table(); |
14 | | | |
15 | | | weathermap_run_maps(dirname(__FILE__) ); |
16 | | | |
17 | | | |
18 | | | // vim:ts=4:sw=4: |
19 | | | ?> |