Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • denmil

    (@denmil)

    Hi sideeq313,
    I would suggest increasing the memory limit.
    Just Open “wp-includes” folder. Inside, you can see default-constants.php file. Here you should increase memory limit “WP_MEMORY_LIMIT”.

    Just scroll down you can see this code

    // Define memory limits.
    if ( ! defined( ‘WP_MEMORY_LIMIT’ ) ) {
    if ( false === wp_is_ini_value_changeable( ‘memory_limit’ ) ) {
    define( ‘WP_MEMORY_LIMIT’, $current_limit );
    } elseif ( is_multisite() ) {
    define( ‘WP_MEMORY_LIMIT’, ’64M’ );
    } else {
    define( ‘WP_MEMORY_LIMIT’, ’40M’ );
    }
    }
    You just increase ‘WP_MEMORY_LIMIT’, ’40M’ – I mean instead of 40M, increase like 512M.

    hope this helps

    denmil

    (@denmil)

    Hello nitinsunny007,

    Have you tried to remove everything in the .htaccess file surrounded by # BEGIN W3TC … and # END W3TC …? Also completely remove the wp-content/cache directory just to be sure.there might be caching rules getting in your way. let me know your progress

    denmil

    (@denmil)

    Hello Shianne1993,

    I think this message is coming from the “Instagram Feed” plugin. Try going to Instagram Feed > Settings > Customize. Scroll down until you find “Cache error API recheck” (near the bottom of the page) and enable that setting.

    Hopefully that’ll fix it for you!

    Best,

Viewing 3 replies - 1 through 3 (of 3 total)