in reply to Re: mod_perl odd behaviour with system() or exec() call or backticks
in thread mod_perl odd behaviour with system() or exec() call or backticks

Thank you for your feedback. Unfortunately my virtual host was already using ModPerl::PerlRun as PerlResponseHandler.
  • Comment on Re^2: mod_perl odd behaviour with system() or exec() call or backticks

Replies are listed 'Best First'.
Re^3: mod_perl odd behaviour with system() or exec() call or backticks
by perlfan (Parson) on Jul 11, 2014 at 14:40 UTC
    Is traditional CGI an option? It's been mentioned that in this situation it is your best bet since you're literally running the script once per request. The only difference is going to be that you will have to ensure that your shebang and environmentals are as expected, namely @INC and %ENV.