You need to login to send post. No account yet? Create one:
Create account
Strange problem with content permissions in Drupal
Mon, 01/18/2010 - 19:27
I have similar site to your try.seo-web-design-aberdeen.co.uk. Some content is accessible only for authorised users - for that I'm using Nodeaccess module. On my front page I'm sending users directly on this content. If they don't have right to see it, they are redirected by Error reporting on login page.
BUT!
Sometimes after login they aren't able reach content on which was redirected before (and they are obviosly redirected back on login page), although in this case they HAVE permissions to view it...
Did you noticed the same behavior? I am using Drupal 6.15.



















We at least figured it by patch of 'includes/bootstrap.inc':
Change in function 'drupal_page_header()':
header("Cache-Control: store, no-cache, must-revalidate");
on
header("Cache-Control: no-store, no-cache, must-revalidate");
and also under '// The following headers force validation of cache':
header("Cache-Control: must-revalidate");
on
header("Cache-Control: no-store, no-cache, must-revalidate");