Closed (fixed)
Project:
Authenticated User Page Caching (Authcache)
Version:
6.x-1.0-rc1
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Reporter:
Created:
4 Oct 2009 at 09:29 UTC
Updated:
29 Aug 2012 at 16:41 UTC
After I have set the nocache cookie by clicking on "Disable caching for this browser session", the cookie never expires after restarting FF (and I mean *really* restarting all FF firefox processes). Even uninstalling Authcache doesn't delete it.
I have to manually delete the cookie in order to get caching to work again.
Firefox 3.5.3
Drupal 6.14
Authcache 6.x-1.0-rc1
Vianney Stroebel
Likwid - Spécialistes Drupal - Paris
Comments
Comment #1
Viybel commentedUPDATE:
Clicking on "Invalidate all user sessions" or changing *any* option back and forth in admin/settings/performance/authcache doesn't delete the cookie either.
This bug is browser-independent (tested in Google Chrome and IE8).
Comment #2
Viybel commentedAnyone?
Comment #3
Jonah Ellison commentedI can't seem to reproduce this. What OS are you on?
Also, can you visit http://authcache.httpremix.com/ and see if you receive the same results?
Thanks!
Comment #4
RAFA3L commentedSame problem here...
I did this:
- Clear all in Firefox.
- Invalidate sessions in authcache and clear cache.
- Open my home and in firebug the only cookie is authcache_debug, debug box is at the top left and message in the html code
- After login, appear the cookie nocache and authcache_debug. No authcache cookie, no debug box at the top left and no message at the bottom of the html.
I'm using FF, Safari and Chrome on Mac. I create a user in http://authcache.httpremix.com/ and all work fine. I see the cookies authcache_debug and authcache
I check anonymous user and authenticated user.
This is in settings.php and I test it using db and apc.
$conf['cache_inc'] = './sites/all/modules/authcache/authcache.inc';
$conf['cacherouter'] = array(
'default' => array(
'engine' => 'apc', // apc, memcache, db, file, eacc or xcache
'server' => array(), // memcached (host:port, e..g, 'localhost:11211')
'shared' => TRUE, // memcached shared single process
'prefix' => 'vasp', // cache key prefix (for multiple sites)
'path' => 'files/filecache', // file engine cache location
'static' => FALSE, // static array cache (advanced)
),
);
Another question:
I notice that the apc memory catch everything in the File Cache, using Authcache or not. Is possible restrict this by domains?
Comment #5
RAFA3L commentedSorry about this, I ran the cron and now all work.
Comment #6
simg commented