Posted by Dave Meyer on May 21, 2010 at 7:19am
3 followers
Jump to:
| Project: | CCK Redirection |
| Version: | 6.x-1.2 |
| Component: | Code |
| Category: | bug report |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | active |
Issue Summary
Redirects appear not to work if page caching is enabled. Clicking the redirect link takes one to an empty page.
Comments
#1
I am having the same issue - subscribing
#2
I'm not sure if that's your case, but if you use the Boost caching module, CCK redirection won't work. You need to tell Boost not to cache nodes for which you have a redirection enabled. Under "Statically cache specific pages :", select "Cache pages for which the following PHP code returns TRUE (PHP-mode, experts only)." and paste the following code :
<?php(empty($node->content['field_redirection'])) ? (return TRUE) : (return FALSE);
?>
#3
we are using memcache on our sites, not Boost cache. I will check with the person that set up the memcache to see if this is also possible through that module.
thanks