RE: Total disk space wrong
06-12-2015, 04:10 AM
(This post was last modified: 06-12-2015, 04:46 AM by Diablo925.)
its only show the free Space on on the sda /var/sentora/hostdata/ is place
PHP Code:
$maximum = self::$diskquota;
$used = self::$diskspace;
if ($maximum == 0) {
if (sys_versions::ShowOSPlatformVersion() != 'Windows') {
// We'll specify the full path to the hsoted directory to ensure that NFS mounts etc are taken into account.
$free = disk_free_space(ctrl_options::GetOption('hosted_dir'));
} else {
// On Windows we'll check the disk (partition) that is configured for the 'hostdata' directory.
$free = disk_free_space(substr(ctrl_options::GetOption('hosted_dir'), 0, 2));
}