I've been banging my head against the wall for a few days on this one. Running this on Mac OSX Version 10.12.6
When I run apachectl restart
I immediately see in my system.log several entires of the following:
httpd[89474]: no path for address 0x1145b3000
I've installed everything with homebrew, and can confirm that brew doctor returns no issues, and that all formulae are up to date. If I throw a die('1');
in my code, I am echoed the 1, however when trying to run the application I get the same no path for address error.
I've verified that PHP is parsing correctly as I can run code and echo out the result when exiting the application. I've also verified that this is somehow related to a custom vhost, as removing my vhosts allows me to execute a basic request to a phpinfo();
file.
Nothing is logged in either the base apache error log, or my error logs defined in the application vhosts. When trying to run the application I get an immediate 500 error with a blank response and no error logs.
Any idea whats going on here?