When the external HTTP server is enabled in ExeOutput for PHP, your application listens on a local port (like 55777), and URLs like http://127.0.0.1:55777/... will work because there is an HTTP server handling those requests.
However, when you disable the external HTTP server, there is no HTTP...