Quantcast
Channel: WordPress.org Forums » [W3 Total Cache] Support
Viewing all 19300 articles
Browse latest View live

nkaufmannraptus on "[Plugin: W3 Total Cache] purge from cache not working"

$
0
0

Hello,

I am experiencing some issues with the page-cache. after updating posts or pages they are not purged from the cache. Even after clicking the 'purge from cache' link on a post edit page does not purge that page from the cache.

I have following options checked in the purge-policy settings:
Front page, Posts page, Post page, Blog feed

but the setting doesn't seem to effect anything. Only clearing the entire page-cache, using the 'empty-cache' button on the settings page, seems to do the trick.

I have also tried to use a function to purge the pages via w3tc_pgcache_flush_post(), but it didn't help either:

function purge_cache_on_save($post_id) {
  if (function_exists('w3tc_pgcache_flush_post')){
   w3tc_pgcache_flush_post($post_id);
  }
}
add_action( 'save_post', 'purge_cache_on_save' );

Currently the site is on a Apache server.

Are there any settings I have missed that could resolve this problem or do you have any other suggestions what could cause this behaviour?

Thank you in advance.

https://wordpress.org/plugins/w3-total-cache/


iluvatoq on "[Plugin: W3 Total Cache] Can't close the popup window"

evilhidden on "[Plugin: W3 Total Cache] Minify Not Working on Post Pages"

$
0
0

I have minify setup to combine CSS files. This works as expected on the blog homepage, but the combined CSS file is not being written in the head section of individual post pages.

I have deactivated all plugins except W3. I am using the Genesis theme (latest version) no child theme to eliminate that variable. The Twenty Fifteen theme does not cause the error.

Please help!

https://wordpress.org/plugins/w3-total-cache/

Ov3rfly on "[Plugin: W3 Total Cache] wp_cache_get() missing params causes ACF fields not being cached with W3TC"

carnelldesign on "[Plugin: W3 Total Cache] How to Porperly Minify my Child Theme CSS"

$
0
0

This is my response from yoast!

Thanks for the email! We apologize for the inconvenience and we thank you for bringing the issue to our attention. The issue occurs when 'page' or 'all template' is selected from the CSS file management drop-down menu. We've reported this to our team of developers. I have added you to our list to be contacted when we fix it.

kysil on "[Plugin: W3 Total Cache] WebP if Browser Caching"

DigitalMetal on "[Plugin: W3 Total Cache] Mobile version of my site being displayed on some pages"

$
0
0

Hi,

Sometimes when i create a post on my site (that's using the woo commerce storefront theme) the public view of the post or page defaults to mobile view but on on a desktop browser and i cant get rid of it and view the desktop version.
A WooCommerce engineer told me ot looks like W3 total chache is the problem and is caching and serving up the mobile version instead of the desktop version.
It seems totally random, sometimes it does it and sometimes it views as expected as a desktop view.
Are you able to help me work out why or a fix for it?

https://wordpress.org/plugins/w3-total-cache/

oskapt on "[Plugin: W3 Total Cache] wp_w3tc_cdn_queue filled up, bad query on non-indexed field"

$
0
0

For the last two days our site has been running slower and slower, until today it ground to a halt. I traced it to 210,000 rows in wp_w3tc_cdn_queue that were causing the database to run at 100% CPU. All were some variant of SELECT remote_path from wp_w3tc_cdn_queue where remote_path=<path>;.

  1. Why are you querying for remote path when you already have the path?
  2. Why are you doing a full table scan on a non-indexed field?

It appears, based on server performance, that these queries are piggybacked on queries for real data, so when this table exceeded a certain size, it recursively took out legitimate traffic until the whole site timed out. I deleted the table contents, and the site returned.

At the very least, please set an index on remote_path, but I'm still curious why you are making a query for remote_path when you already have the path. It's like "select id from foo where id=1" - it's a total waste. This query is on line 640 of lib/W3/Plugin/Cdn.php.

https://wordpress.org/plugins/w3-total-cache/


minpavillon on "[Plugin: W3 Total Cache] Http error 500 because of W3 total cache"

$
0
0

Hi,
When trying to log into my dashboard I get a message that the site does not work because of a http error 500. I tried to rename the plugin folder in wp-content and then got a message that the problem was due to a file related to W3 total cache (advanced-cache.php) - wp debug is true.

Via filezilla I deleted all folders and files related to W3 TC and changed .htacess and wp-config as I read I should. Nothing works, I am still locked out!

Does anyone have an advice how to get into the backend of the site? Please if you have describe exactly what to do or send a link . I am a beginner!

https://wordpress.org/plugins/w3-total-cache/

ShaunaMcGeeKinney on "[Plugin: W3 Total Cache] Malware URL in readme.txt"

$
0
0

I was hit by a defences1(dot)com injection into a config file today (18 June 2016).

I think the source is the CDN (W3 Cache or CloudFlare or ...)

" ... Some Content Delivery Networks (CDNs) enable fraudsters to deploy phishing attacks with valid SSL certificates. Not only does this make the fraudulent sites appear more credible, but they also benefit from the fast response times provided by the CDN. ..."

http://news.netcraft.com/archives/2013/10/07/phishers-using-cloudflare-for-ssl.html

I've been suffering from a series of different attacks, mostly bots that started when my site was hosted on a shared server at HostGator. Other sites on my server were infected for months before I was infected. My first symptoms was a slow site, so I signed up for CloudFlare, then for SiteLock. My site went down and I restored it 3 times, before I moved to another web host with a dedicated IP.

" ... The traffic between the original web server and CloudFlare remains unencrypted unless the web server owner has his own certificate installed on his machine. Almost everyone who browses a https domain reached from CloudFlare is unaware that just half of the route is encrypted. When they see the padlock on their screen, they feel that everything is safe. This is why phishers love CloudFlare's SSL. It's easy to use for a cybercriminal with numerous domains hidden behind the privacy services of various registrars. ..."

http://www.crimeflare.com/cfssl.html

I canceled my CloudFlare and SiteLock when I left HostGator, but I cannot stop SiteLock from scanning my domain and suspect CloudFlare is similar. I suspect there is something still living amongst my WordPress files on my new server.

minpavillon on "[Plugin: W3 Total Cache] Http error 500 because of W3 total cache"

$
0
0

Just found out, thanks to great help from Anne from Vaultpress, that it was revolution slider that caused the problem!

oskapt on "[Plugin: W3 Total Cache] wp_w3tc_cdn_queue filled up, bad query on non-indexed field"

$
0
0

Looking at your code further, it seems that you're simply trying to determine if a file is _already_ in the queue so that you don't insert it twice. In that case, a better query would be:

SELECT id from wp_w3tc_cdn_queue where remote_path=<path>;

EDIT: My earlier comment about this being an indexed field is actually incorrect. You're still searching on a field that is non-indexed, so it'll still be slow. All this does is reduce the size of the response, which is insignificant.

You need an index on remote_path.

randy394 on "[Plugin: W3 Total Cache] Database Error Table Doesn't Exist - SELECT remote_path FROM wp_w3tc_cdn_queue"

$
0
0

I'm receiving ongoing errors such as this in my error log. Any ideas what it means?

[18-Jun-2016 14:41:11 UTC] WordPress database error Table 'admin_wdps1.wp_w3tc_cdn_queue' doesn't exist for query SELECT remote_path FROM wp_w3tc_cdn_queue WHERE remote_path = 'blogs/wp-content/uploads/2010/01/horizon-31-300x225.jpg' made by shutdown_action_hook, do_action('shutdown'), call_user_func_array, wp_ob_end_flush_all, ob_end_flush, W3_Plugin_TotalCache->ob_callback, w3tc_do_ob_callbacks, call_user_func, W3_Plugin_Cdn->ob_callback, preg_replace_callback, W3_Plugin_Cdn->link_replace_callback, W3_Plugin_Cdn->_link_replace_callback_checks, W3_Db->query, W3_DbCache->query, W3_DbCallUnderlying->query, W3_Db->query, W3_DbProcessor->query, W3_Db->default_query

https://wordpress.org/plugins/w3-total-cache/

Ian Dunn on "W3 Total Cache: Multisite support?"

angrywarrior on "W3 Total Cache: Multisite support?"


Honza Felt on "[Plugin: W3 Total Cache] 404 instead of a home page"

$
0
0

Hi Ashok,

Here is a quick update. When I activate the default theme, the error doesn't occur. I had one of your colleagues look at the site in February and since then everything was all right until now.

Any ideas? Thank you!

davidallouch on "[Plugin: W3 Total Cache] W3TC - JS file management - no results"

$
0
0

Hello,

I'm trying to use JS file management in W3TC to manage js scripts that are render blocking above the fold content.

I am using embed after body.

I use Avada theme.

However, when I make the configuration update (e.g. for http://www.bb-yb.com/wp-includes/js/comment-reply.min.js?0e1c56) it seems to make no difference.
i.e. Google pagespeed still tells me this js is blocking the rendering of my site.

What have I not understood in this configuration?

thanks for your help,
Nikki

https://wordpress.org/plugins/w3-total-cache/

JoeMeyer on "[Plugin: W3 Total Cache] HTTPS | CDN Issue"

$
0
0

Hi friends.

I have a WordPress site which has many attachments, fonts, and .js sent over to Cloudfront as a CDN via the W3TC plug-in (my theme is Divi). My client needed a SSL installed, which I did.

The problem is: even though I have +origin protocol policy+ and +viewer protocol policy+ set to "HTTPS only," my Chrome and Edge SSL rating is still not passing (these are headers in the AWS control panel). The odd observation is that most of the CDN's content +is+ being funneled now through HTTPS -- it's simply 8 fonts that are not changing.

Any ideas on how to fix this?

In the meantime, I've turned off the font-porting and localized it so I have the 'green' lock graphics on my client's site.

All the best,

https://wordpress.org/plugins/w3-total-cache/

tonz003 on "[Plugin: W3 Total Cache] Server Technology is Visible"

$
0
0

Hi,
I am also interested in this question!
Thank you in advance for any help!

LSOID on "[Plugin: W3 Total Cache] Pre generate cache prior to visitor visiting site first"

$
0
0

Hello,

How could I generate the cache manually, without waiting for visitor to access page first?

I'm looking for a way to cache all site's pages either with a command, script or any other way, pre-generating cache before visitor opens first page.

Thank you

https://wordpress.org/plugins/w3-total-cache/

Viewing all 19300 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>