Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Contributor Frederick Townes

    (@fredericktownes)

    That link didn’t work for me when I checked. What exactly is going wrong?

    Having issues as well.. When a user logs in on vbulletin it still shows logged off unless the browser is refreshed. Same as well with the wordpress site. I have narrowed this down to browser caching.. just don’t know how to configure it

    found the answer.. add the following code to your bulletin .htaccess file. it will prevent it from being cached. also, make sure you add the folder for the forum to the block list on the page caching tab.

    # Set Expires to default 0
    ExpiresActive On
    ExpiresDefault A0

    # No caching
    <FilesMatch “\.(php|cgi|pl|htm|html)$”>
    ExpiresActive Off
    Header set Cache-Control “private, no-cache, no-store, proxy-revalidate, no-transform”
    Header set Pragma “no-cache”
    </FilesMatch>

    Excellent post hughra!

    Since I have vBulletin installed in a sub-directory I just created an .htacess file in the vBulletin directory and added the code you posted. I then blocked the forums folder in Page Cache by adding /forums/* and emptied the cache and it is working well now.

    Plugin Contributor Frederick Townes

    (@fredericktownes)

    Thanks @hughra

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Vbulletin Issues Since Installing W3 Total Cache’ is closed to new replies.