I have made small web-app: http://letme.ijn.su
At this moment I debug it on PC.
I have problems with Firefox - when I make some changes on server side(add more notes) and resfresh page - I see changes only after some time. Other browsers(chrome, opera, yandex) work well
I suppose it is because of firefox cashing - how can I force it to get new info from server with every request?
I use Ubuntu, Apache, PHP.
by link http://letme.ijn.su - you launch index.php, which print job-page or login-page(have you cookies or not).
Asked
Active
Viewed 61 times
0

O.O
- 127
- 8
-
2Does this answer your question? [How to force the browser to reload cached CSS/JS files?](https://stackoverflow.com/questions/118884/how-to-force-the-browser-to-reload-cached-css-js-files) – Krzysztof Krzeszewski Aug 04 '20 at 07:33
-
still trying... – O.O Aug 04 '20 at 11:02
2 Answers
2
Maybe this will work clearstatcache();
This should clear the cache on the server side. Or if you want to delete a file you can use unlink();

Nikolai
- 151
- 2
- 12
0
I think clearing your browser cache will work best. Also, make sure to check the "Disable Cache" is the inspector settings. You can also try "View Page Source" in Firefox and refresh the newly-opened tab containing the page source.

Naheed Mir
- 46
- 2