I’m developing a website based on WordPress source code through XAMPP. Sometimes I change the CSS code, scripts or something else and I notice my browser takes time to apply the modifications. This leads me to use multiple browsers to refresh one and if it doesn’t apply the new styles I try the second one and it’s always this.
There is some way of avoiding this problem?
Sometimes I’m changing code without noticing the previous modifications.
General solution
Pressing Ctrl + F5 (or Ctrl + Shift + R) to force a cache reload. I believe Macs use Cmd + Shift + R.
PHP
In PHP, you can disable the cache by setting the expiration date to a time in the past with headers:
Chrome
Chrome’s cache can be disabled by opening the developer tools with F12, clicking on the gear icon in the lower right corner and selecting Disable cache in the settings dialog, like this:
Image taken from this answer.
Firefox
Type
about:configinto the URL bar then find the entry titlednetwork.http.use-cache. Set this tofalse.