• Resolved webgalway

    (@webgalway)


    this plugin has maxed out my server storage and caused my sites to slow to a crawl. I had to install sunburst plugin to see what was hogging all of the space and saw that wpo-minify had accumulated to 20gb!, am uninstalling this, surely your plugin updates should be better tested before being released.

Viewing 3 replies - 1 through 3 (of 3 total)
  • @webgalway Could you Please use following snippet and add it to your active child themes functions.php file, it will automatically delete the minified files after 3 days

    add_filter( 'wp_optimize_minify_cache_expiry_time', function( $original_value ) {
    return time() - 86400 * 3;
    } );

    same issue here. will this be fixed? deleting files after 3 days seems to be only a workaround

    @bahijach Please use the following snippet to your active child theme’s functions.php file

    add_filter( 'wp_optimize_minify_cache_expiry_time', function( $original_value ) {
    return time() - 86400 * 3;
    } );
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘maxed out server space’ is closed to new replies.