Need to "Refresh" the page to see modifications

Hi,

Since the 1.7 upgrade, I notice that I always need to make a “refresh” to see changes when updating a page. Same thing when I go back to the page for editing, I also need to make a refresh to see the new content or modification I made previously. That might be related to the Partial refresh, is there something I can do to fix this issue?

Thanks for your help!

Hey Jonathan,

I just tried playing around with BB 1.7 on my local dev and it works just fine. All changes I make are being reflected in the live preview as well as when I go back to the page builder to make more changes. Do you have any caching plugins installed? I’d recommend turning that off while actively working on the site.

Ben

No, I do not have any cache plugins installed. I think this is maybe related to a few “tweak” we have done on Apache to increase performance. I’ll test on another server and if it’s ok I presume this is a server configuration issue…

Thanks for your help!!

No worries at all! If you don’t mind, can you post what you find out for future references? :slight_smile:

Ben

Sure!

I can confirm that was the issue.

We follow these steps to optimize Apache configuration
http://www.gk-root.com/GK-Blog/optimize-mysql-apache-on-cpanelwhm-server/

The problem is with the “Pre VirtualHost Include”

# Cache Control Settings for one hour cache
<FilesMatch ".(ico|pdf|flv|jpg|jpeg|png|gif|js|css|swf)$">
Header set Cache-Control "max-age=3600, public"
</FilesMatch>

<FilesMatch ".(xml|txt)$">
Header set Cache-Control "max-age=3600, public, must-revalidate"
</FilesMatch>

<FilesMatch ".(html|htm)$">
Header set Cache-Control "max-age=3600, must-revalidate"
</FilesMatch>

# Mod Deflate performs data compression
<IfModule mod_deflate.c>
<FilesMatch ".(js|css|html|php|xml|jpg|png|gif)$">
SetOutputFilter DEFLATE
BrowserMatch ^Mozilla/4 gzip-only-text/html
BrowserMatch ^Mozilla/4.0[678] no-gzip
BrowserMatch bMSIE no-gzip
</FilesMatch>
</IfModule>

When I remove that code, no need to refresh. That makes sense!!!

Have a great day.

Thanks Jonathan, for informing us your issue has been resolved. We appreciate it.

Thanks,
Danny