Finally we need to fix a bug:
Edit /opt/share/www/lighttpd/zussaweb/functions.php and change:
Code:
function freediskspace() {
return (round (disk_free_space(disk)/1024/1024,2));
}
into:
Code:
function freediskspace($disk) {
return (round (disk_free_space($disk)/1024/1024,2));
}