Reputation: 1
I am using Netbeans for PHP development.
If I make any change to CSS, it doesn't show in browser.Every time I have to close the NetBeans and then restart it to see the changes I made.
How can I show CSS updates without restarting the IDE?
Upvotes: 0
Views: 1311
Reputation: 2036
if you are using chrome press F12 then right click refresh button and select empty cache and hard reload
Upvotes: 0
Reputation: 2757
So it could be two things.
First, if you are on your localhost, check in your php.ini file if the OPCache is not activated.
If its activated add ";" to comment.
Careful, there is two php.ini file with MAMP WAMP XAMP, so check if it's the good one.
Second, check if you use chrome to disable the cache while using the dev tool. it can be done in the web devtools setting (could be the same with firefox).
May be it's another thing but try these two things.
Upvotes: 1
Reputation: 2128
Try reloading the page after removing cookies
... use ctrl+shift+delete
to remove cookies from your browser.
Upvotes: 0