I run a very simple php file on apache. Then I benchmark apache, using
ab -n 10000 -c 5 http://localhost/~me/hello.php?name=Niko
But I get this error message, depending on c (for c=1, things are fine):
apr_socket_connect(): Operation already in progress (37)
I'm using ApacheBench, Version 2.3 on OSX 10.5.7.
The very simple PHP file would be this one:
<h1>Hello <?=$_REQUEST['name']?></h1>