Your browser is also caching js and css. So try to hard reload (windows: strg + f5) the page.
Or disable the caching for you browser on your development site.
It isn't the browser, I've disabled cache, cleared the entire browser history and tried multiple browsers. Same problem.
If anyone else is having this problem, it's a Vagrant bug that affects both apache and nginx. To fix:
Apache: add # A VirtualBox bug forces vagrant to serve
EnableSendfile off
sendfile off
It works on my vagrant too! Here's the nginx pitfalls page for it. http://wiki.nginx.org/Pitfalls#Config_Changes_Not_Reflected
KevinCreel said:
If anyone else is having this problem, it's a Vagrant bug that affects both apache and nginx. To fix:
Apache: add # A VirtualBox bug forces vagrant to serve
corrupt files via Apache or nginx
The solution to that would be to turn off
the SendFile option in apache or nginx
If you use apache as your main web server
add this directive in your httpd.conf (or apache.conf)
configuration file name may vary in various systems
EnableSendfile off
If you use nginx as your main web server
add this directive in your nginx.conf
sendfile off
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community