Page 1 of 1

Login & Registration Pages

PostPosted: May 14th, 2010, 3:46 pm
by cableghost
How do I omit the login and registration pages from being cached? I recognize wp-login in the 'No-Cache URI Patterns' section, but the registration page appears to still be cached.

-Scott

Re: Login & Registration Pages

PostPosted: May 19th, 2010, 1:48 am
by Jason Caldwell
The default WordPress® installation uses this URI for registration:
Code: Select all
/wp-login.php?action=register

So the default entry for No-Cache URIs already covers this.

If your theme, ( or a plugin ) is using a non-default registration page, you'll just need to add the URI. For instance, on WPMU, it's wp-signup.php, and on BuddyPress, it's /register. So you can add these two No-Cache URIs.

Code: Select all
wp-signup
register

Re: Login & Registration Pages

PostPosted: May 19th, 2010, 8:41 am
by cableghost
Thank you.

Re: Login & Registration Pages

PostPosted: June 21st, 2010, 11:26 pm
by Jason Caldwell
Marking this as resolved.