The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
2answers
76 views

File permissions for wp-minify plugin

I am worried on installing Wp-Minify plugin. But it needs 777 permission for the cache directory located inside wp-uploads directory. Isn't it a security issue?
3
votes
1answer
275 views

Proper hook for W3TC defines, or dynamically disable w3 total cache

I have a site that uses a shopping cart plugin (Shopp), a plugin I wrote, and W3 Total Cache. In my plugin, I'd like to make sure that W3 Total Cache does not serve any cached pages if the user has ...
2
votes
1answer
136 views

How to use cache with simplepie

According to the docs, if you want to cache results for a fetch of RSS feeds with simplepie, you do this: add_filter( 'wp_feed_cache_transient_lifetime' , 'return_7200' ); $feed = fetch_feed( ...
1
vote
1answer
91 views

w3 total cache and sitemap.xml

I have been installing lately w3 total cache on my wordpress site and today webmaster tools has been mailing an error by sitemap.xml crawling. Sitemap ist HTML. Is anybody experienced this issue with ...
0
votes
1answer
24 views

Static HTML page caching for large website

I'm creating a WooCommerce store with 3000+ products (+filters). And I'm using WP super cache plugin because I want to serve pages as fast as possible. This arises problems/questions: When any post ...
0
votes
1answer
40 views

Exclude certain block from caching using Fragment Caching - doesn't work

I have a one form, and I'm inserting it on page footer from a function file. I need to display a random form to each visitors and thus have a function developed to support this. However, with caching ...
0
votes
1answer
70 views

Caching-Plugins and Ajax-Page-Parts

I'd love to use »W3 Total Cache« for my Wordpress page. Caching the full page is really fasten up the site. But there is a lot of current community activity and most pages including some "latest ...
0
votes
1answer
41 views

Keeping Objects in Memory

I have built a WordPress plugin using classes. Each project class is created for a specific user. I want to do three things: Keep the project object in memory for that user between his or her ...
0
votes
1answer
110 views

Some custom taxonomy child terms not showing in admin. Caching problem?

I have a problem with some custom taxonomy terms. I am using "Types" plugin for creating custom post types and custom taxonomies. I successfully created my postype and hierarchical taxonomy and ...
0
votes
1answer
283 views

wp-super-cache exclude file from caching

Is there any mean to exclude a *.php file to WP Super Cache? I've in my single.php page an include news.php, the file news.php contains ten links to my last articles. So I want to cache single.php ...
0
votes
1answer
103 views

Pagination in wp query with transient api

I have intergrated wordpress transient system with w3 total cache. Now i can`t to do pagination for this query. <?php $paged1 = ...
0
votes
1answer
39 views

wordpress cache feeds

i would like to implement a custom cache for all the feeds in my site because the rss requests are very intensive and i have a big db load does anybody know a good action before running the rss query ...
2
votes
0answers
139 views

AJAX vs Fragment Caching for W3 Total Cache

I'm running a WP site with WooCommerce and I want to do some caching. I'm going to exclude the pages such as the cart/checkout for obvious reasons however there are a couple of the things on the site ...
1
vote
0answers
38 views

Limit cache size from W3 Total Cache

Is it possible to define a limit for how much space W3 Total Cache is allowed to use?
1
vote
0answers
145 views

How to optimize 'select found_rows()' query? Several 'high load average' alerts daily

I have 5,000 regular posts, 6,000 posts in one post type and 2,000 posts in another post type. Needless to say, that has made the wp_posts table quite large. Not to mention, I have custom taxonomies ...
1
vote
0answers
125 views

Should i use wp transient with w3-total-cache apc caching

Should i use in my queries wp transient like this - <?php if ( ! $my_paged = absint( get_query_var( 'paged' ) ) ) $my_paged = 1; if ( ! $my_query = get_transient( "567recent_$my_paged" ) ...
1
vote
0answers
136 views

After Installing APC Object Cache Backend transients stopped working

My understanding is that once you enable the persistent object cache, your transients are no longer stored in wp_options, but in the cache. Once I installed Mark Jaquith's APC Object Cache Backend, ...
1
vote
0answers
28 views

Caching RSS plugin data

I'm developing plugin and I need it's data to be cached, let's assume that it's large RSS feed grabber. Basically data of one RSS feed is about 100 lines of parsed HTML code (about 2KB). On one page ...
1
vote
0answers
144 views

WP-Super-Cache - generate cache programmatically

I wonder if there is possibility to generate WP-Super-Cache programmatically after the cache is being purged ( after I have published a new post ). I thought of writing some kind of crawler that will ...
0
votes
0answers
16 views

Scheduling daily refresh of posts

So here's my situation: I'm using AmazonSimpleAdmin to display products using the Amazon API. I have one product per post. The API limits 1 request per second. Meaning my front page can only have one ...
0
votes
0answers
147 views

Caching issue: WooCommerce add to cart doesn't work when logged out on Chrome

Background on the problem I have a WooCommerce site hosted on WPEngine. Before going live, I contacted support with a list of pages to exclude from caching. I tested the checkout functionality, ...
0
votes
0answers
20 views

caching pluggins: why the flush?

I have a site that seldom refreshes and I use a caching pluggin. I noticed caching pluggins refresh (flush their memory) every ~ 1 day. How can I stop this flushing? Maybe make it more rare?
0
votes
0answers
14 views

How can I complete a web request then continue processing?

I am trying to add thumbnails to my site via a plugin. There are several plugins to do that but none seem to fit my needs. My plugin is progressing well however I have run into a small roadblock. I ...