Cronjob update-disk-quota error

  • Since a few weeks, I get the following errors from the update-disk-quota Cronjob:


    Code
    1. /etc/cron.hourly/update-disk-quota:
    2. [[0;33mWARN[0m] (eval): Use of uninitialized value in addition (+) at /var/www/imscp/engine/quota/imscp-dsk-quota line 202.
    3. [[0;33mWARN[0m] (eval): Use of uninitialized value in addition (+) at /var/www/imscp/engine/quota/imscp-dsk-quota line 202.
    4. ...


    Here is the section of that script (It's the last line in the for loop that causes the warnings):


    Code
    1. for my $sqlDbName ( keys %{$customerDatabases} ) {
    2. next unless grep($_ eq $sqlDbName, @{$databases});
    3. my $sqlDbTables = $dbh->selectall_hashref(
    4. "SHOW TABLE STATUS FROM " . $dbh->quote_identifier( $sqlDbName ), 1
    5. );
    6. next unless %{$sqlDbTables};
    7. $size += $_->{'Data_length'}+$_->{'Index_length'} for values %{$sqlDbTables};
    8. }



    I only found this thread: Disk quota every night i-MSCP - An error has been raised

    But that seems to be an other problem.


    Any idea?

    Edited once, last by Vringe: Marked as unresolved ().