Why Magento Takes Up Huge Disk Space

My magento store takes up a huge amount of disk space and it exceeded 7.5 GB of disk space. I have over 12 thousand products.

I did the following, but it had no significant effect

  • Clear entire database cache table
  • Removed files in var / media / import directory
  • Cleared var / cache
  • Removed files in var / log and var / reports
+3


source to share


1 answer


This is ok, because with 12k products, you have at least 12k images. if the average of your product image is 200kb, so you can consume 2.4GB just for your product image. Check your directory

magento/media/*

      

that you have a lot of uncompressed images from your products.



you must

  • Minimize all images to compress large disk space. try jpegmini.com
  • Change js and css which never updated lately. to get better performance for your website too.
+2


source







All Articles