For some odd reason, every time I update a file, it doesn't update inside the browser (localhost - wampserver). To be more specific. If I have a simple php script:
echo "hello world";
It works fine in the browser and displays the text "hello world".
However, if I upgrade it to
echo "goodbye world";
And refresh your browser, nothing happens. The text remains "hello world."
This has not been a problem before and has been perfectly updated. I tried to clear the browser cache, tested it in several browsers, restarted my Wamp server and restarted the computer. Nothing seems to work.
The only way code seems to be updated is to run the script from my IDE. Then it is displayed in the browser with the updated code. How can I fix this problem? I want him to return to how he was and be able to update in the browser.
Using wampserver php - 5.3.13, apache 2.2.22
source
share