Page 1 of 1

Plugin Breaks WP Theme

PostPosted: May 5th, 2010, 3:24 pm
by naplesdave
I am using the Flexibility 2 theme from http://www.flexibilitytheme.com/ and when using the Quick Cache plugin the plugin breaks the theme after a few hours of use.

My settings are the default, except I am caching pages for a week as they are rarely update but highly trafficked.

Would appreciate any help, or, just wanted to let others know it doesn't work with all themes.

Kind regards,
Dave Jackson

Re: Plugin Breaks WP Theme

PostPosted: May 6th, 2010, 9:41 pm
by Jason Caldwell
Hi Dave. Thanks for reporting.
plugin breaks the theme after a few hours of use

Can you please elaborate on this a bit. How does it break? What happens?

Re: Plugin Breaks WP Theme

PostPosted: May 6th, 2010, 10:28 pm
by naplesdave
Hi Jason,

I can't reproduce it now... the them simply went away and you'd see bare bones. Turning off and on the plugin fixed it. Maybe it's just caching an error in something else.

Thanks for the response.
Dave

Re: Plugin Breaks WP Theme

PostPosted: May 6th, 2010, 10:34 pm
by Jason Caldwell
Ok. Thanks.
Hey, are you seeing any oil on the beaches down there?

Re: Plugin Breaks WP Theme

PostPosted: May 8th, 2010, 2:38 am
by Guest
Hey guys im about to install quick cache, how ever is it better than w3 total cache ?

fact is ive never used any cache at all. so im a bit lost because i dont want to go on about trying each cache plugin out there i merely rely on comments.

can you guys advice.

thanks

david

email admin@latinunit.net

Re: Plugin Breaks WP Theme

PostPosted: May 8th, 2010, 3:44 am
by Guest
Hi guys ive installed the plugin and left all the defaults as they seem ok, but im not sure if the plugin is working? i saw the sorce code and it says it took the page 20 secs to load and had 64 queries served or something like that

can you view please http://www.latinunit.net

my website still seems like laggin

Re: Plugin Breaks WP Theme

PostPosted: May 8th, 2010, 8:10 am
by naplesdave
Hi Jason,

I had to turn it off again today. Strange. I went through my list of plugins and left it till last and when I turned it off I got my template back.

Do you know where I should start looking?

Even with the template skewed, the plugin was caching, so it's working... just does something when left on for a few days with the Flexibility2 template.

Thanks for any help,
Dave

P.S. No, I think we're too far south to see any oil, which is good.

Re: Plugin Breaks WP Theme

PostPosted: May 12th, 2010, 10:06 pm
by Jason Caldwell
Guest wrote:Hi guys ive installed the plugin and left all the defaults as they seem ok, but im not sure if the plugin is working? i saw the sorce code and it says it took the page 20 secs to load and had 64 queries served or something like that

can you view please http://www.latinunit.net

my website still seems like laggin


I just pulled this from the source code on your site:
Code: Select all
A Quick Cache file was just served for (  latinunit.net/ ) in 0.00462 seconds

Looks good! If you want more speed than that, you'll need to check the response time from your server. It does appear that your server is a bit slow. If your server is slow to respond, then it makes no difference how fast Quick Cache is. You may want to check with your hosting provider on Apache response times. Either that, or move over to another hosting provider. I recommend MediaTemple (gs).

Re: Plugin Breaks WP Theme

PostPosted: May 12th, 2010, 10:12 pm
by Jason Caldwell
naplesdave wrote:Hi Jason,

I had to turn it off again today. Strange. I went through my list of plugins and left it till last and when I turned it off I got my template back.

Do you know where I should start looking?

Hi Dave. It sounds like your theme is returning an empty page at certain times, or under certain circumstances. For instance, if a PHP syntax error occurs in your theme every once in awhile, it could result in an empty page, that ends up in the cache. This would not happen very often, only at certain times, randomly even.

I'd turn PHP error logging on, and monitor your log files for PHP errors. See if you can figure out where and when your theme is returning a blank page. Place these lines in your wp-config.php file.
Code: Select all
@ini_set('log_errors','On');
@ini_set('display_errors','Off');
@ini_set('error_log','/home/example.com/logs/php_error.log');

Don't forget to change /home/example.com/logs/
to a location where you want your log files stored.