Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

wamp html script not updating

I am trying to run a php based web app locally using wamp. On making changes to the html script in .php file, the page does not get updated. However, changes in css files are being updated. Any fixes to the issue?

like image 943
user3437533 Avatar asked May 02 '26 14:05

user3437533


1 Answers

If your code changes dont get reflected when you view the page, it has probably been cached by the browser.

Always use CTRL + F5 so the cache is refreshed when making changes.

Alternatively most browsers have developer extension and one of those is usually an option to turn off caching. You should look for that and set it while developing a site.

How do I Disable FireFox's Browser Cache COMPLETELY?

How to disable caching in Internet Explorer 9?

Disabling Chrome cache for website development

like image 68
RiggsFolly Avatar answered May 05 '26 03:05

RiggsFolly