in reply to Net::OpenSSH - page not loading completely
You might want to use lsof to figure out what open file handle is keeping the respective webserver process from considering the CGI call done. Apache, for example, would wait for all stdout/stderr handles (i.e. of the CGI itself and any children the CGI forked) to be closed.
You probably also need to point default_stderr_fh to /dev/null (or simply set master_stdout_discard => 1, master_stderr_discard => 1), but that's just a guess (i.e. untested).
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Net::OpenSSH - page not loading completely
by comanche008 (Initiate) on Apr 16, 2012 at 11:46 UTC | |
by Eliya (Vicar) on Apr 16, 2012 at 13:27 UTC | |
by comanche008 (Initiate) on Apr 16, 2012 at 15:02 UTC | |
by Eliya (Vicar) on Apr 16, 2012 at 16:08 UTC | |
by salva (Canon) on Apr 16, 2012 at 16:59 UTC | |
|