in reply to Forking not completing
That said, I suspect you're hitting a specific limit of the OS and/or use that your CGI is running as. I suggest adding code to complain if the fork fails and see if that offers any clues.
Peace,if ($pid = fork) { # I'm the parent } else { if (! defined($pid) ) { die "Can't fork: $!"; } # Child here }
|
|---|