int rc; FCGX_Request request; int sockfd=(int)a; int err = FCGX_InitRequest(&request, sockfd, FCGI_FAIL_ACCEPT_ON_INTR); LOG("sock: %d, err %d \n",sockfd, err); for (;;) { LOG("in HERE \n"); rc = FCGX_Accept_r(&request); LOG("in HERE \n"); if (rc < 0) { LOG...
Running the FastCGI executable (production mode) on the command line, I get $ ./graphmind.fcgi graphmind.fcgi: user error (FCGX_Accept_r failed with error code: -88) That means nothing to me, but perhaps it does to others. Building with simple-server and running it, it works fine and...
graphmind.fcgi: user error (FCGX_Accept_r failed with error code: -88) That means nothing to me, but perhaps it does to others. Building with simple-server and running it, it works fine and creates the DBs no problem. I'm using the Sqlite3 back-end and it seems to be working fine...