General

Identifying current document root disk space

By 25th July 2014September 15th, 2020No Comments

So that we can quote accurately, its important that we know how much disk space you are currently consuming for your Magento store's document root.

Fortunately, you can quickly find out and serve us the information we need by running the following command.

Replace /path/to/magento/installation as necessary

cd /path/to/magento/installation
du -hsL . \
  --exclude="var/log" \
  --exclude="var/session" \
  --exclude="var/cache" \
  --exclude="var/full_page_cache" \
  --exclude="var/report" \
  --exclude="var/tmp" \
  --exclude="var/backups" \
  --exclude="includes/src"