Mounted cifs folder does not display images

June 17, 2008 · Posted in apache 

To host a test website, I had mounted a folder on my Linux server from my Vista machine.  When I opened the browser and went to the website, I was unable to view the images.  The website worked fine except the images were not showing up.  Upon a little research it turned out that I had to disable the “EnableSendfile” in my httpd.conf file.

<Directory "/path-to-nfs-files">
EnableSendfile Off
</Directory>

For more information, click here.

Comments

Leave a Reply