ok, I had deleted a few hundred files and was seeing how much space I saved.
Oh also is there a way in cpanel it self to check inode usage?
Well that link does not really help me any. Plus I don't have ssh. That is why I opened this thread. I thought I had seen something about inodes being shown in cpanel and thought I would ask.
The first question was because I had deleted files and I wanted to see how much that effected my usage. In directadmin you can go to usage page and click update for space usage and it will show you the new usage.
<?php
system("find /home/username/ -printf '%i\n' | sort -u | wc -l");
?>
How do you update the space usage in cpanel?
I know how to do it in directadmin but not cpanel.
Create a empty PHP file and add this:
PHP:<?php system("find /home/username/ -printf '%i\n' | sort -u | wc -l"); ?>
Replace username with "your username". Php function "system" has to be enabled by your hosting company to work.
Regards