PDA

View Full Version : Exclude log size from web space statistics


SupuS
26th December 2010, 13:14
With setting

$go_info["server"]["perms_root"]["logs"] = true;

in config file config.inc.php we are able to exclude logs from web quota. But if customer use website space statistics ispconfig still shows statistics with log files size included.

This behaviour we can easily change by modifying "du" command in file:

/home/admispconfig/ispconfig/lib/plugins/check_webspace.plugin.php

on line 61 or 63 (if you are not use sudo for generating stats). You have to add --exclude=log after --max-depth=1 directive as follows:

$fd = popen ("sudo du -h --max-depth=1 --exclude=log ".$path_httpd_root."/web".$web_id, "r");

This is dirty hack only. This behaviour should depend on other system variables. I created feature request for this so you can vote for it:

http://bugtracker.ispconfig.org/index.php?do=details&task_id=1450

I hope it will help somebody :)

SupuS