I'm trying to install x_sendfile in apache web server on a Mac OS X Server. Everything seems fine with the installation and the httpd.conf is configured with "LoadModule xsendfile_module libexec/apache2/mod_xsendfile.so" and "XSendFile ON".
If I run "httpd -M" from the terminal I can se "xsendfile_module (shared)" in the list.
But in phpinfo() or apache_get_modules() x-sendfile is not listed. If i try to use x-sendfile in my php code to download any file, the browser just downloads a 0 kb file. I can see the x-sendfile header tag in the header data though.
Any suggestions?