You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Then I had to edit config.php and add the single quotes around both !defined statement variables WM_CONFIGDIR and WM_OUTPUTDIR they were missing, which wouldn't allow weathermap to install.
/* we will define them here */
if (!defined('WM_CONFIGDIR')) {
define('WM_CONFIGDIR', $configdir);
}
if (!defined('WM_OUTPUTDIR')) {
define('WM_OUTPUTDIR', $outputdir);
I also followed the directions in config.php and copied the content of configs and output to the new location and weathermap installed.
/**
These two settings need to be defined per your Cacti install. In legacy
versions of weathermap, these two files were located in the plugin
directory. However, in Cacti 1.3, the archive function will interfere
in that locations setting. So, pick a location that is owned by
the apache user, but is not in the Cacti base path. Ensure that
the path's end with a '/'.
*/
The text was updated successfully, but these errors were encountered:
Renamed config.php.dist to config.php.
Then I had to edit config.php and add the single quotes around both !defined statement variables WM_CONFIGDIR and WM_OUTPUTDIR they were missing, which wouldn't allow weathermap to install.
/* we will define them here */
if (!defined('WM_CONFIGDIR')) {
define('WM_CONFIGDIR', $configdir);
}
if (!defined('WM_OUTPUTDIR')) {
define('WM_OUTPUTDIR', $outputdir);
I also followed the directions in config.php and copied the content of configs and output to the new location and weathermap installed.
/**
*/
The text was updated successfully, but these errors were encountered: