Quote Originally Posted by raas View Post
Yep, having the same error (otherwise it wouldn't be in the image )
have tried the path variable also, but that didn't work.
didn't you use the fix from the first post??

Quote Originally Posted by DrChair View Post
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));
}