in reply to Re^2: Safe open() with taint mode not working?
in thread Safe open() with taint mode not working?

Ah I see. The thing to do is to add debugging warns everywhere around that code (eg  warn "in child, about to exec...\n", and see what makes it into the web server's error log. Also, you should check for open() returning an undef value, and you should check for exec failing - in both cases, printing out $! to STDERR.

Dave.