darrencss
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Super Cache] "Delete Cache" in admin bar does not workThe delete cache option in the admin bar only deletes the cache of the page you are on at the time, not the entire site cache.
You’ll have to go to the plug in settings to do this.Forum: Plugins
In reply to: [WP Super Cache] Remove Wp Super Cache Html comment in footerI found solution
Great
Hmm talking about Pagespeed is it really speeding your website?
It does although the main boost comes from deferring javascript and converting images from jpg to webp on the fly. Both of which can be achieved by simpler means.
Most of the other filters have a minimal effect to be honest. Deferring javascript can also mess up your site in some browsers so needs thorough testing.
Forum: Plugins
In reply to: [WP Super Cache] Delete cache not working for www-less URLI have noticed this problem on odd occasions. I don’t think there is much else you can do apart from ensuring the page always resolves to www.
Have you checked google’s results for your site are all pointing to www?
Forum: Plugins
In reply to: [WP Super Cache] Remove Wp Super Cache Html comment in footerI don’t use this solution myself, I have google pagespeed on my server with a filter that removes html comments. But unless you have root access to your server this isn’t possible.
All you need is a plugin or some functions code that will remove html comments.
Forum: Plugins
In reply to: [WP Super Cache] CDN SupportNo, you don’t need CDN support
Forum: Plugins
In reply to: [WP Super Cache] Remove Wp Super Cache Html comment in footerIn themes functions file add
// Remove unwanted HTML comments function remove_html_comments($content = '') { return preg_replace('/<!--(.|\s)*?-->/', '', $content); }Forum: Plugins
In reply to: [WP Super Cache] Delete Cache in admin bar doesn't workThe clear cache option on the admin bar only clears the cache of the page you are on.
Forum: Plugins
In reply to: [WP Super Cache] Leverage browser cachingBrowser caching is handled via your site’s .htaccess file, not this plugin.
A simplish explanation here:
http://www.feedthebot.com/pagespeed/leverage-browser-caching.htmlForum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Discrepancy in statsWell the issue is obviously being ignored so I’ve switched to google analytics instead.
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Discrepancy in statsStill seeing this problem and still no response from wordpress.com?
Jetpack is rapidly becoming useless.
There has been a delay in stats reporting for the past week. I’m experiencing a 12 hour delay for accurate stats.
Are the stats for the previous 24 hour period the same, if they are it could be just the same delay issue?Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Discrepancy in statsI have also seen a delay in stats reporting over the past couple of days.
Just to add ‘Include directories’ as in
WP Super Cache Settings > CDN > Include Directories: (wp-content,wp-includes, etc).
I had a similar problem and it was caused by a directory name in the ‘Include directories’ being the same as some other url string.
In my case I have images in a ‘media’ directory (which I obviously want to include) but I also had a wordpress category called ‘media’ which was included in the url of any relevant posts.
Renaming the category solved the problem.
Forum: Plugins
In reply to: [WP Super Cache] Various pages recieve 500 error while logged inAccording to your set up known users are not getting a cached page so I’d guess this isn’t an issue with this plug-in?