wamp html script not updating

怎甘沉沦 提交于 2019-12-07 13:43:29
RiggsFolly

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

If you disable both of these lines in the php.ini file, this should no longer happen.

soap.wsdl_cache_enabled=0

opcache.enable=0

At least that worked for me.

Hope it helps.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!