• i have some prob :O i got 1 wordpress site on that site i just post embed video but prob is my database getting biger and biger with 1 post it add about 2 mb to my database but i dont get it coz i just embed video and with evey video i put featured image size about 50kb :/ idk what to do :/? and i dont host that video on my site i embed it from any other website.. pls help :O

Viewing 3 replies - 1 through 3 (of 3 total)
  • my database getting biger and biger

    There are many possible reasons for that, but anything you upload does not go there. WP Clean UP is a plugin I use to clean and optimize my database, and there are times when I have no idea why it grows as it does.

    https://www.ads-software.com/plugins/search.php?q=WP+Clean+Up

    iShouvik

    (@shouvikmukherjee)

    Hello Tuhin,
    Wordpress stores more than just the posts on the database. Apart from storing user details, posts, post meta, etc. it also stores the revisions. So, the size of your db is likely to grow with time,

    If you believe that your db is unreasonably large, you could use some plugin like WP Optimize.

    Disclaimer: I haven’t actively used this plugin for a longer period and you need to be a bit careful about what you remove. I’d recommend you to take a backup of your db before proceeding.

    I hope it helps.

    ~ Cheers!

    it also stores the revisions

    Ah yes, and you can control that and some other things a bit by adding something like this above “That’s all, stop editing!” in wp-config.php:

    /**
    ** Various Dashboard Tweaks
    * bridle 'AUTOSAVE_INTERVAL' */
    define('AUTOSAVE_INTERVAL', 300 ); //seconds
    /* limit 'WP_POST_REVISIONS' */
    define( 'WP_POST_REVISIONS', 3 );
    /* enable 'DISALLOW_FILE_EDIT' at Dashboard */
    define('DISALLOW_FILE_EDIT', true);

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘wordpress using too much database space’ is closed to new replies.