flewid
Forum Replies Created
-
We ended up moving to Gravity Forms + Woocommerce as it was very urgent for us to get this resolved. Thanks for the help anyway.
tried this in htaccess just to see
—————-
# DISABLE CACHING
<IfModule mod_headers.c>
Header set Cache-Control “no-cache, no-store, must-revalidate”
Header set Pragma “no-cache”
Header set Expires 0
</IfModule><FilesMatch “\.(css|flv|gif|htm|html|ico|jpe|jpeg|jpg|js|mp3|mp4|png|pdf|swf|txt)$”>
<IfModule mod_expires.c>
ExpiresActive Off
</IfModule>
<IfModule mod_headers.c>
FileETag None
Header unset ETag
Header unset Pragma
Header unset Cache-Control
Header unset Last-Modified
Header set Pragma “no-cache”
Header set Cache-Control “max-age=0, no-cache, no-store, must-revalidate”
Header set Expires “Thu, 1 Jan 1970 00:00:00 GMT”
</IfModule>
</FilesMatch>—–
did not work
interesting – can i disable caching for just one site (i run multiple vhosts)
Also, upgraded back to latest CF7 – 1.6.5 – same deal
Hey Scott,
Thanks for the reply. So
– I was using the latest version of CF7, I also tried to downgrade to the prior version, and, his development version (note: don’t do this, lol downgrading deletes all your forms for some dumb reason).
– I do not have any other CF7 addons active on the site.
– Do not have any caching plugins.
– I do have opcode and apc enabled on apache, however I flushed those caches, and also restarted apache just to be sure and did not make a difference.
– I also flushed apaches cache, and there is nothing in it now
htcacheclean -A -p /var/cache/apache2/mod_cache_disk
– Only thing that exists in my htaccess is the standard wordpress stuff;
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>