I'm trying to find a reliable way to fork a process off of a web connection that stays up after the user's connection has ended/died.
ie, user goes to cgi, cgi forks perl script #2, cgi+connection die/end, perl script #2 is still running.
exec() does this yes, but I don't think its too reliable in the context of web..
any ideas?
so far it seems like I'll have to run a daemon..