https://bugzilla.wikimedia.org/show_bug.cgi?id=30046
--- Comment #2 from Paolo Benvenuto <[email protected]> 2011-10-12 05:49:52 UTC --- The user case is that of a wiki where unregistered users aren't allowed to edit pages: unregistered users are readers while registered users are editor. In that case unregistered users are to be given a "reader's sidebar", with links which are appropriated to their tasks. Registered users, on the contrary, are to be given different links in order to do their work. About the caching, my wiki implements the double sidebar as described in the description. I'm experimenting on it, with two browser, one logged in and the other not logged it. My wiki uses memcached caching. In LocalSettings I have: $wgMainCacheType = CACHE_MEMCACHED; $wgParserCacheType = CACHE_MEMCACHED; # optional $wgMessageCacheType = CACHE_MEMCACHED; # optional $wgMemCachedServers = array ( 0 => '127.0.0.1:11211', ); $wgSessionsInMemcached = true; # optional Loading the same page at the same time with the two browsers shows the correct (logged in or not logged in) sidebar. I.e.: apparently the caching doesn't apply to the sidebar. -- Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug. You are on the CC list for the bug. _______________________________________________ Wikibugs-l mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/wikibugs-l
