This might also be a problem on unix but I haven't tested.
When cgi's are launched a window sometimes pops up, same for
mod_include "exec cgi". Is there a reason we are not
launching the cgi as a detached process?
Index: mod_cgi.c
===================================================================
RCS file: /home/cvs/httpd-2.0/modules/generators/mod_cgi.c,v
retrieving revision 1.113
diff -u -d -b -r1.113 mod_cgi.c
--- mod_cgi.c 2001/12/13 17:22:20 1.113
+++ mod_cgi.c 2001/12/13 18:49:03
@@ -446,6 +446,7 @@
"couldn't set child process attributes: %s", r->filename);
}
else {
+ apr_procattr_detach_set(procattr, 1);
procnew = apr_pcalloc(p, sizeof(*procnew));
if (e_info->prog_type == RUN_AS_SSI) {
SPLIT_AND_PASS_PRETAG_BUCKETS(*(e_info->bb), e_info->ctx, e_info->next,
rc);
Allan