Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>I'm having a similar problem and got to this page cause I feel lucky today :) The error means the httpd binary makes reference to a symbol that cannot be found in the appropriate dynamically linked library (libapr in this case, Apache Runtime Library)</p> <p>Running same OS X version on an iMac. /usr/lib/libapr-1.0.dylib points to the most recent version of the library (1.0.2.12), which does not define the method/symbol _apr_socket_sendfile</p> <p>The other version of libapr library is 1.0.2.7, does have that symbol. I had the symbolic links point to this version instead (also for libaprutil):</p> <pre> // BEFORE (both 1.0.2.7 and 1.0.2.12 versions exist, symlinks point to .12) bash-3.2# ls -l libapr* -rwxr-xr-x 2 userna wheel 835824 19 Sep 2008 libapr-1.0.2.12.dylib -rwxr-xr-x 1 root wheel 578640 24 Sep 2007 libapr-1.0.2.7.dylib lrwxrwxrwx 1 root wheel 21 14 Oct 2008 libapr-1.0.dylib -> libapr-1.0.2.12.dylib lrwxrwxrwx 1 root wheel 21 14 Oct 2008 libapr-1.dylib -> libapr-1.0.2.12.dylib -rwxr-xr-x 2 userna wheel 569544 19 Sep 2008 libaprutil-1.0.2.12.dylib -rwxr-xr-x 1 root wheel 393696 24 Sep 2007 libaprutil-1.0.2.7.dylib lrwxrwxrwx 1 root wheel 25 14 Oct 2008 libaprutil-1.0.dylib -> libaprutil-1.0.2.12.dylib lrwxrwxrwx 1 root wheel 25 14 Oct 2008 libaprutil-1.dylib -> libaprutil-1.0.2.12.dylib // CHANGE symbolic links to previous version bash-3.2# ln -sf libapr-1.0.2.7.dylib libapr-1.0.dylib bash-3.2# ln -sf libapr-1.0.2.7.dylib libapr-1.dylib bash-3.2# ln -sf libaprutil-1.0.2.7.dylib libaprutil-1.0.dylib bash-3.2# ln -sf libaprutil-1.0.2.7.dylib libaprutil-1.dylib // TESTing whether httpd is loaded and run bash-3.2# /usr/sbin/httpd -t Syntax OK </pre> <p>Not really sure whether this has been broken since last software update that included Apache Web Server, I rarely use it on this box.</p> <p>Hope it helps ;)<br /> Jon</p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload