Hello,
How can I verify that Varnish Cache is disabled?
My Virtuemart template seems to have problems with updating the cart. My template designer is telling me that sever cache is causing the problem and is able to run a copy of my site on their server without problems.
I tried disabling cache by adding
Header set Cache-Control "max-age=0, private, no-cache, no-store, must-revalidate"
to .htccess.
I also tried adding (per this post: https://x10hosting.com/community/threads/caching-is-killing-me.194965/#post-934938)
<filesMatch "\.(html|htm|js|css)$">
FileETag None
<ifModule mod_headers.c>
Header unset ETag
Header set Cache-Control "max-age=0, no-cache, no-store, must-revalidate"
Header set Pragma "no-cache"
Header set Expires "Wed, 11 Jan 1984 05:00:00 GMT"
</ifModule>
</filesMatch>
Neither seems to do anything and I still have my problem.
How can I verify that Varnish Cache is disabled?
My Virtuemart template seems to have problems with updating the cart. My template designer is telling me that sever cache is causing the problem and is able to run a copy of my site on their server without problems.
I tried disabling cache by adding
Header set Cache-Control "max-age=0, private, no-cache, no-store, must-revalidate"
to .htccess.
I also tried adding (per this post: https://x10hosting.com/community/threads/caching-is-killing-me.194965/#post-934938)
<filesMatch "\.(html|htm|js|css)$">
FileETag None
<ifModule mod_headers.c>
Header unset ETag
Header set Cache-Control "max-age=0, no-cache, no-store, must-revalidate"
Header set Pragma "no-cache"
Header set Expires "Wed, 11 Jan 1984 05:00:00 GMT"
</ifModule>
</filesMatch>
Neither seems to do anything and I still have my problem.