I have a CGI script that I want to invoke a perl file. The problem is, I don't want the cgi script to be terminated (exec command) and I don't want the cgi script to wait for the perl process to finish.
I have been trying variations of the following:
system("nohup ./process.pl $filename &"
Any ideas???
I have been trying variations of the following:
system("nohup ./process.pl $filename &"
Any ideas???