The cache tag has no wiki summary.
0
votes
3answers
431 views
Is the W3 Total Cache plugin a good choice for WordPress MultiSite? [closed]
I heard that many people had issues with W3 Total Cache on a WordPress MultiSite install. And then I see this on the plugin page:
Compatible up to: 3.2.1
Last Updated: 2011-8-26
Seeing that ...
-1
votes
1answer
84 views
WordPress Default Feed Does Not Change After Hooking the_content_feed [closed]
While I was experimenting with my developing plugin and after hooking the_content_feed to modify the default WordPress feed output, which can be accessed at http://siteurl/?feed=rss2, even if I ...
0
votes
1answer
158 views
Where does WordPress default SimplePie save cache data?
Where does WordPress default SimplePie save cache data? I could only find relevant info about cache durations but not the location. SimplePie has a method called set_cache_location() but I cannot find ...
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
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" ) ...
0
votes
1answer
50 views
Problem with caching, W3TC [closed]
Am using W3TC from a long time but from past few weeks am stuck, as I can't see my edits working. It was all fine in past but from a week my edits in style.css reflects back in like an hour after.
...
-1
votes
1answer
554 views
Any idea why Google not caching my site? [closed]
My site www.books-for-children.com (developed in Wordpress) has been live for about two months and still has not been cached by Google, which seems highly unusual. Any ideas why?
Thank you.
0
votes
1answer
724 views
Bluehost WebHost and performance problems with W3TC
I'm currently arguing with Bluehost over slow server times and they pointed to a report at gtmetrix.com in which I found inefficient CSS selectors.
There were 55 very inefficient CSS selectors from ...
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, ...
2
votes
1answer
674 views
Varnish + W3 Total Page Cache
I currently have varnish setup on my server. I'm also using the W3 Total Cache plugin to speed up the site through a CDN.
Question:
Is there any point in using varnish if the pages are being cached ...
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 ...
0
votes
2answers
59 views
How effective are cacheing plugins for dynamic pages?
The majority of pages of one of my sites can only be accessed by registered users. While these pages do share some common, static content (headers, etc) most of the information on the page is ...
0
votes
2answers
130 views
Transient api Caches confused
This code works for page 1
<?php
$paged1 = (get_query_var('paged')) ? get_query_var('paged') : 1;
$recent1 = get_transient( 'recent1' );
if ...
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 = ...
2
votes
1answer
93 views
How does the default recent posts widget work with cache?
I am trying to build a widget based on the default wordpress recent posts widget. In wp-includes/default-widget.php , I noticed in class WP_Widget_Recent_Posts in function widget(), the recent posts ...
5
votes
2answers
628 views
Best way to show Dynamic Content on a Cached Wordpress Site?
I really want to use one of the Cache plugins so that I can serve up more Static pages on my WordPress theme/site. This is obviously the best performance upgrade you can do for a WordPress ...
0
votes
1answer
99 views
Shortcode Strategy
I'm looking to insert data from another database into my posts, and thought of using shortcodes. An example post:
[imdb id="123" name] was born [imdb id="123" birthday] in [imdb id="123" ...
0
votes
1answer
55 views
Cache plugin for medium traffic news blog
I have a middle-low traffic blog. Server is lite speed based. And ping values 20-25 MS for my Country ( this blog not global,just for my Country )
I want to Install a light cache plugin...
Which ...
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 ...
1
vote
2answers
279 views
PHP Code stuck in Cache [Memcached]
Been having a bit of a problem with my site regarding our caching method and my php code not refreshing or flushing.
To start, my site is on a dedicated Nginx webserver. I used W3 Total Cache for ...
1
vote
1answer
94 views
Where should a plugin or widget cache its results?
Where should a plugin cache its re-usable results?
I have read the code of several well-used Wordpress plugins, and it seems that the answer is not consistent. I have written several plugins myself, ...
0
votes
1answer
54 views
Client cant see the Updated dynamic content
I have came across an issue... whenever I upload new content to the site.. and i send the link to the client.. He can not view the changes instead what he see is the previously updated content. Looks ...
1
vote
1answer
154 views
Optimizing Jetpack for Wordpress [closed]
Yslow reports following issues with Jetpack:
1) Compress http://stats.wordpress.com/e-201219.js using gzip
2) Configure etags for http://stats.wordpress.com/g.gif?...
Modified the format so that it ...
1
vote
1answer
77 views
Get the timout value of a saved transient?
Does anyone know if there is a Wordpress function to get the timeout value of a saved transient? I am using a transient with a 5 minute timeout to cache data from a web API call locally. Between ...
1
vote
3answers
428 views
Settings to get the most out of W3 Total Cache
I'm running a dedicated server which hosts one website - our WordPress install.
Currently we're getting around 400,000 pageviews per month and that will likely rise quickly over the coming month - ...
2
votes
2answers
178 views
How many SQL queries WP Super Cache make to serve cached page?
WP Super Cache plugin generate page and save html of this page to static file and if needed this file is served instead of dynamically generate this page each time.
Does WP Super Cache plugin make ...
3
votes
2answers
158 views
Is it possible to disable caching of an option when using w3 total cache?
a plugin i'm working on has a conflict with w3 total cache. To be more specific, in my code i have
static function get_instance()
{
if( self::$_instance === NULL ) {
// get the settings ...
0
votes
1answer
378 views
Scheduling doesn't work due to caching?
I'm using W3 Total Cache and Nginx with Varnish, and I'm very happy with the speed. However, I noticed that when I schedule a post, the post doesn't get automatically posted when I'm a visitor. When ...
1
vote
2answers
498 views
How wp_cache is supposed to work, and does it help with performance?
I was coding my recent comments widget, and using $wpdb->get_results and I wanted t use cache so it doesn't perform the query every time the page loads, so I used:
$comments = ...
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 ...
0
votes
1answer
421 views
APC fragmention woes on Apache AWS EC2 Small instance with WordPress and W3TC
Asked this question at serverfault, and got confirmation that W3TC is most likely causing the issue, but several of my more W3TC/Wordpress specific issues weren't able to be answered. Reposting ...
0
votes
1answer
42 views
W3 Total Cache Minification: way to revert back?
W3 Total Cache Minification: after adding all my js files in the minification settings, what if something screws up? Is is possible to revert back to the original un-minified files?
Thanks.
0
votes
1answer
718 views
How to Automatically import external images to Upload
Hi to all I would like to have a simple plugin, hook, anything that Automatically caches external images.
Simple explanation:
Actually I'm using this plugin: ...
0
votes
1answer
86 views
what is the cache directory for in my theme? (version control it?)
I was wondering what processes exactly use the cache directory inside my theme's directory. More specifically, I am wondering if I should add any of those files to my git repo.
0
votes
1answer
341 views
How can I not cache the twitter widget? [closed]
I am using Hyper Cache on my client's site which works great.
However, I recently added the Twitter Pro widget to the sidebar and because of Hyper Cache new tweets don't appear until a new post is ...
3
votes
4answers
384 views
How can I improve site/page performance of WordPress websites?
To improve site/page performance, I added the following code to accept headers:
<php flush(); ?>
It works, but perhaps not as well as it could. Any advice?
I also tried to leverage browser ...
1
vote
2answers
250 views
WordPress Caching - Transients API or “update_user_meta ” Cronjob?
I'm trying to set user meta based on queries. Basically, things like IF the query returns true, set this or if not, set this (or don't set it, if it is true). This works great but the problem is I ...
2
votes
1answer
160 views
Are there any server requirements for WordPress transients to work properly?
Background Info
I sell WordPress themes where I include a Twitter widget. In the widget I use a WordPress transient that refreshes every 3 hours to cache the Tweets. I've got thousands of people ...
8
votes
7answers
3k views
How do you avoid caching during development?
Is there a simple way do prevent all caching when testing the appearance of changes to the site? I use WP Super Cache. I can delete its cache using the option provided, delete the cache for my ...
0
votes
1answer
191 views
Wordpress performance is slow when user is logged in [closed]
I have a website running on wordpress and i have installed W3 total cache plugin on it the problem i am facing is the site home page load in around 10 to 12 seconds when user is logged in. The home ...
0
votes
2answers
633 views
Why does my site flash white every time it changes page?
Any ideas? Never had this problem before.
http://bit.ly/xvclET
Thanks
1
vote
1answer
391 views
Headway body classes and W3TC page cache conflict
I'm currently working on a website using WordPress, Headway, Modernizr and W3 Total Cache. The problem I'm having is that W3TC is caching the body tag, which means that this isn't being updated ...
0
votes
1answer
698 views
Warning! PHP safe mode enabled!
I just installed WP Super Cache plugin and enabled all settings which were suggested by this plugin. After doing it I am seeing a warning.
Warning! PHP safe mode enabled!
What is this? What should I ...
1
vote
3answers
230 views
Transients vs CRON +Custom Fields: Caching Data Per Post
Wanted some opinions on a solution I'm trying to come up with:
I have a fan/enthusiast plugin I'm working on for fans of TV shows. One of the custom post types attached to the plugin is a release ...
0
votes
4answers
2k views
Speed up Wordpress
I don't have the feeling that my blog is particularly slow, but that's because I haven't really started out yet. I'm very worried that it will get slow soon, especially because I will have blog posts ...
1
vote
1answer
101 views
Reasonable Size Limit to options entry
I have a set of ~4700 records that I need to have locally searchable for my plugin via an auto-complete (it's the Google Product Search categories). Would it be okay to store this data in the options ...
3
votes
2answers
629 views
Forcing reload of editor-style.css
Is there a method to force the refresh of editor-style.css, when I change manually the stylesheet for the TinyMCE editor? Modification doesn't show immediately but they will be cached in the admin ...
0
votes
1answer
199 views
w3 total cache - Object Caching 2165/2469 objects?
Site is: http://kremim.com
WordPress 3.2.1 MS, buddypress,bbpress installed. wp_options have 333 records. But Object Caching 2165/2469 objects? Why 2000+ ?
Debug:
...
0
votes
3answers
1k views
w3 Total Cache not Caching - Requested URI is rejected [closed]
For some reason Total Cache does seem to be caching my pages.
Each time I got to a page, when I view source, the Total Cache comment shows that it regenerated the page for this request.
What worse, ...
0
votes
1answer
98 views
W3 Total Cache Help - How to update DNS Zone for a static domain
I am running this site: www.thetechnofreaks.com on Wordpress. Recently I came through a plugin that claims to increase the page load efficiency of my site. the plugin details can be found here: ...