Page 1 of 1

stats?

PostPosted: August 1st, 2010, 12:04 pm
by wpweaver
The plugin admin panel FAQ says there should be stats at the end of the generated HTML. I'm not seeing these. Is that an option to enable? And I'm not logged in.

So is disabling caching for someone who just posted a comment based on cookies, e-mail, or IP? Is there a timer for that. Just curious.

Re: stats?

PostPosted: August 4th, 2010, 10:22 pm
by Jason Caldwell
Thanks for the great question.

This is handled through cookie tracking, and Quick Cache does not do anything custom in this regard. WordPress already sets a cookie called "comment_author", even with just a default installation ( no plugins ). In other words, Quick Cache detects the presence of the "comment_author_HASH" cookie.

The default timeout for this cookie, can be found inside /wp-comments-post.php
Code: Select all
$comment_cookie_lifetime = apply_filters('comment_cookie_lifetime', 30000000);

So it's just over 1 year by default; but this can be modified through a WP Filter if needed.