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
Copy file name to clipboardExpand all lines: install/index.php
+6-4Lines changed: 6 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -814,7 +814,7 @@ function install_file_paths () {
814
814
}elseif ($step == '2') {
815
815
816
816
print'<h2>Pre-installation Check</h2><br>';
817
-
print'Cacti requies several PHP Modules to be installed to work properly. If any of these are not installed, you will be unable to continue the installation until corrected.<br><br>';
817
+
print'Cacti requries several PHP Modules to be installed to work properly. If any of these are not installed, you will be unable to continue the installation until corrected.<br><br>';
@@ -831,6 +831,7 @@ function install_file_paths () {
831
831
array('name' => 'xml', 'installed' => false),
832
832
array('name' => 'pcre', 'installed' => false),
833
833
array('name' => 'json', 'installed' => false),
834
+
array('name' => 'zlib', 'installed' => false)
834
835
);
835
836
836
837
$ext = verify_php_extensions($extensions);
@@ -986,7 +987,7 @@ function install_file_paths () {
986
987
if (is_writable('../resource/snmp_queries')) {
987
988
print" <p>". $config['base_path'] . "/resource/snmp_queries is <font color='#008000'>writable</font></p>";
988
989
} else {
989
-
print" <p>". $config['base_path'] . "/resource/script_server is <font color='#FF0000'>not writable</font></p>";
990
+
print" <p>". $config['base_path'] . "/resource/snmp_queries is <font color='#FF0000'>not writable</font></p>";
990
991
$writable=FALSE;
991
992
}
992
993
@@ -1006,11 +1007,12 @@ function install_file_paths () {
1006
1007
1007
1008
/* Print help message for unix and windows if directory is not writable */
1008
1009
if (($config['cacti_server_os'] == "unix") && isset($writable)) {
1009
-
print"Make sure your webserver has read and write access to the entire folder structure.<br> Example: chown -R apache.apache " . $config['base_path'] . "/resource<br><br>";
1010
+
print"Make sure your webserver has read and write access to the entire folder structure.<br> Example: chown -R apache.apache " . $config['base_path'] . "/resource/<br>";
1011
+
print"For SELINUX users make sure that you have the correct permissions or set 'setenforce 0' temporarly.<br><br>";
0 commit comments