denmil
Forum Replies Created
-
Forum: Plugins
In reply to: [W3 Total Cache] Updating of Pages and Posts showing Error!!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
Forum: Plugins
In reply to: [W3 Total Cache] W3 Total Cache ErrorHello 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
Forum: Plugins
In reply to: [W3 Total Cache] Cache error message: How to force cache to clear on intervalHello 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,