-
Notifications
You must be signed in to change notification settings - Fork 73
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
core table is empty but shows title #52
Comments
Can you post a screenshot and provide what you are running Linfo on? Also you can enable error reporting in the config file to see what specifically is going wrong. |
here is my server http://soldat.tyg.me/
|
@IAmEnchant can you provide the OS and PHP version you use? |
I am using Ubuntu17 and PHP7. |
@IAmEnchant Do you use PHP 7.1? or PHP 7.0? |
It's 7.0. |
@IAmEnchant just realized that your config value were all set to Try this config. $settings['show']['kernel'] = true;
$settings['show']['ip'] = true;
$settings['show']['os'] = true;
$settings['show']['load'] = true;
$settings['show']['ram'] = true;
$settings['show']['hd'] = true;
$settings['show']['mounts'] = true;
$settings['show']['mounts_options'] = false; // Might be useless/confidential information; disabled by default.
$settings['show']['webservice'] = false; // Might be dangerous/confidential information; disabled by default.
$settings['show']['phpversion'] = false; // Might be dangerous/confidential information; disabled by default.
$settings['show']['network'] = true;
$settings['show']['uptime'] = true;
$settings['show']['cpu'] = true;
$settings['show']['process_stats'] = true;
$settings['show']['hostname'] = true;
$settings['show']['distro'] = true; # Attempt finding name and version of distribution on Linux systems
$settings['show']['devices'] = true; # Slow on old systems
$settings['show']['model'] = true; # Model of system. Supported on certain OS's. ex: Macbook Pro
$settings['show']['numLoggedIn'] = true; # Number of unqiue users with shells running (on Linux)
$settings['show']['virtualization'] = true; # whether this is a VPS/VM and what kind |
I meant I just wanna hide the "Core" title if those configs set up to false at all. |
try this config, it will hide all values in the Core tab. $settings['show']['kernel'] = false;
$settings['show']['ip'] = false;
$settings['show']['os'] = false;
$settings['show']['load'] = false;
$settings['show']['ram'] = true;
$settings['show']['hd'] = true;
$settings['show']['mounts'] = true;
$settings['show']['mounts_options'] = false; // Might be useless/confidential information; disabled by default.
$settings['show']['webservice'] = false; // Might be dangerous/confidential information; disabled by default.
$settings['show']['phpversion'] = false; // Might be dangerous/confidential information; disabled by default.
$settings['show']['network'] = true;
$settings['show']['uptime'] = false;
$settings['show']['cpu'] = false;
$settings['show']['process_stats'] = false;
$settings['show']['hostname'] = false;
$settings['show']['distro'] = false; # Attempt finding name and version of distribution on Linux systems
$settings['show']['devices'] = true; # Slow on old systems
$settings['show']['model'] = false; # Model of system. Supported on certain OS's. ex: Macbook Pro
$settings['show']['numLoggedIn'] = true; # Number of unqiue users with shells running (on Linux)
$settings['show']['virtualization'] = false; # whether this is a VPS/VM and what kind |
all of the core contents are disabled but the title still shown.
The text was updated successfully, but these errors were encountered: