download plugins /var/www/html/cacti/plugins/
No Plugins Found

how to do ?
What are the file and group ownerships set to? What are the file permissions set to?
@paulcalabro
chown -R apache:apache /var/www/html/cacti/
chmod -R 755 /var/www/html/cacti/
$database_type = 'mysql';
$database_default = 'cacti';
$database_hostname = 'localhost';
$database_username = 'cacti';
$database_password = 'password';
$database_port = '3306';
$database_ssl = false;
What distro? Did you install cacti from a Package or from source? Which plugins? Where did you download them? Your not giving us a lot of info.
Can you please run:
ls -Al /var/www/html/cacti/plugins/
@paulcalabro
https://docs.cacti.net/plugins/
https://docs.cacti.net/plugins.install && old version cacti is ok!!but cacti 1.1.20/21 do no
[root@lan-switch-cacti ~]# ls -Al /var/www/html/cacti/plugins/
总用量 4
-rwxr-xr-x 1 apache apache 40 9月 5 04:37 index.php
drwxr-xr-x 4 apache apache 161 10月 6 2011 monitor
drwxr-xr-x 3 apache apache 125 7月 30 2010 ntop
drwxr-xr-x 3 apache apache 106 9月 25 2011 settings
drwxr-xr-x 5 apache apache 325 6月 10 2013 thold
@paulcalabro
now here find three plugin,but is old time. it do not work. where is the plugin settings ?

If I want to use traffic monitoring, alarm functions like the old version, and send mail, please choose what plug-in or how to implement the function?
It's considered a "Legacy Plugin" based on this code:
function plugin_is_compatible($plugin) {
global $config;
$info = plugin_load_info_file($config['base_path'] . '/plugins/' . $plugin . '/INFO');
if ($info !== false) {
if (!isset($info['compat']) || cacti_version_compare(CACTI_VERSION, $info['compat'], '<')) {
return array('compat' => false, 'requires' => __('Requires: Cacti >= %s', $info['compat']));
}
} else {
return array('compat' => false, 'requires' => __('Legacy Plugin'));
}
return array('compat' => true, 'requires' => __('Requires: Cacti >= %s', $info['compat']));
}
https://github.com/Cacti/cacti/blob/b6c412e41e9d1c863c4ad26a9f2ec9afa4fcdc60/lib/plugins.php#L783
Either:
compat value is nullcompat value.I looked at the thold plugin-- there's no INFO file, which is why it's being flagged as a legacy plugin.
@cigamit is listed as the author of those plugins. I would check with him to see if they're compatible.
@cigamit now download https://codeload.github.com/Cacti/plugin_thold/zip/develop
New problems

error
Validation error for variable id with a value of plugin_thold-develop. See backtrace below for more details.
(/plugins.php: 51 get_filter_request_var)(/lib/html_utility.php: 435 die_html_input_error)(/lib/html_validate.php: 60 cacti_debug_backtrace
Rename the dir to thold..
Please note the following Wiki article: https://github.com/Cacti/cacti/wiki/PluginMigration
Most helpful comment
Please note the following Wiki article: https://github.com/Cacti/cacti/wiki/PluginMigration