Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm using Vagrant to run an Ubuntu powered VirtualBox with Apache2.

The webserver, among others, serves static files from my /vagrant directory.

This works well, well, most of the time. But when I change an Image on my shared folder and reload the website, the exact same image as before is served but only cut off.

It's working if a delete the old picture first from my shared folder, refresh the website so the picture is NOT shown, then save the new file and reload the website again.

Does anyone knew about this porblem? I've nothing special installed, just Apache2 with mod_rewrite and PHP with Mongo, APC Plugin, MongoDB as well as nodeJS with a bunch of scripts.

share|improve this question

1 Answer

up vote 9 down vote accepted

Found the answer here: http://groups.google.com/group/vagrant-up/browse_thread/thread/ed1801c68e8492c4

JC,

What you're seeing is probably because the server serving the static files is using the "sendfile()" syscall, which is broken with the VirtualBox file system. You need to disable sendfile() usage in your server. For Apache:

EnableSendfile off

And for nginx: sendfile off;

Best, Mitchell

share|improve this answer
Looking for an explanation for this peculiar problem, I found your answer. Also good to note that if you can use NFS for sharing the files, it's a more reliable and faster solution, and doesn't suffer from this particular problem: vagrantup.com/v1/docs/nfs.html – Gerry Aug 23 '12 at 11:35

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.