What I need is pretty simple:
- Open a PHP-script through the browser
- The script launches the CGI application and quits
- I close the browser, but CGI application should be running on the server
For some reason system("my.cgi &") doesn't run the cgi process in the background and makes the browser hanging until the process is complete, i.e. I have to wait with the open browser window.
Any idea what the problem can be about?
Any help appreciated.