Exclude log size from web space statistics

Discussion in 'Tips/Tricks/Mods' started by SupuS, Dec 26, 2010.

  1. SupuS

    SupuS Member HowtoForge Supporter

    With setting

    Code:
    $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:

    Code:
    /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:

    Code:
    $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
     
    Last edited: Dec 26, 2010

Share This Page