Logged In: NO

I'm getting "Use of inherited AUTOLOAD for non-method
PerlWebServer::Module::mod_cgi::open3() is deprecated"
warnings. But it works:

<use IPC::Open3;
>use IPC::Open32;

< local (*IN,*OUT,*ERR);
> local (*IN,*OUT,*ERR); my ($cgi_out, $cgi_in,
$cgi_err);
> if (open3($cgi_out, $cgi_in, $cgi_err,"$file")) {
> tie *IN, ref $cgi_in, $cgi_in;
> tie *OUT, ref $cgi_out, $cgi_out;
> tie *ERR, ref $cgi_err, $cgi_err;