Click Here To Update usage for disk space shows only for 1 user

topdog

Verified User
Joined
Jun 22, 2009
Messages
135
Hello,
I have a bit of an interesting situation. First, I'm running CentOS 5.7 Final, and DirectAdmin 1.39.3.
My Situation
Only one user sees the button that says Click To Update Useage underneeth disk space. No other user does. is this a specific account problem?
I'm leaning towards the fact that it may be an account problem with there account, but not sure of how to fix it as I've never seen this issue before.
P.S.: All users are using the enhanced DirectAdmin skin.
I apreciate any help that can be provided on this matter.
 
Are disc quotas enabled in your box? Do all users have disk quotas setup up correct?
 
How would I be able to tel if quotas are setup?
also, what file should be visible in the users directory if quota's are set up?
 
I checked in /etc/fstab and found this
LABEL=/ / ext3 defaults,usrquota,grpquota 1 1
So I imagine that means quotas are enabled based upon that line in fstab.
 
Please show output of

Code:
mount

as /etc/fstab does not guarantee that quotas are enabled.

And this
Code:
repquota / | grep -v ^#
 
Output of
Code:
mount
/dev/sda5 on / type ext3 (rw,usrquota,grpquota)
proc on /proc type proc (rw)
sysfs on /sys type sysfs (rw)
devpts on /dev/pts type devpts (rw,gid=5,mode=620)
/dev/sda2 on /tmp type ext3 (rw)
/dev/sda1 on /boot type ext3 (rw)
tmpfs on /dev/shm type tmpfs (rw)
none on /proc/sys/fs/binfmt_misc type binfmt_misc (rw)
Output of
Code:
repquota / | grep -v
Usage: grep [OPTION]... PATTERN [FILE]...
Try `grep --help' for more information.
 
Full line as it is printed

Code:
repquota / | grep -v ^#

that's not a comment in the end of the line.
 
Full line as it is printed

Code:
repquota / | grep -v ^#

that's not a comment in the end of the line.

Ah, That is probably why it didn't work, didn't copy the ^#.
Sample output is
admin -- 145088 0 0 12612 0 0
 
Back
Top