in reply to Re: Re: CGI file very odd
in thread CGI file very odd
perl -MCGI -e 'print $CGI::VERSION'
This wouldn't be the definitive answer if you have multiple perls (or multiple CGI.pm) on your system, but it's a start.
As for the same file, check for errors - your upload may be failing:
my $query = new CGI; my $error = $query->cgi_error; if ($error) { print $query->header(-status=>$error), $query->start_html('Problems'), $query->h2('Request not processed'), $query->strong($error); exit 0; }
And I'm just assuming you have a typo in your posting ($file_name vs $name)
-derby
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Re: CGI file very odd
by Anonymous Monk on Jan 30, 2003 at 14:05 UTC | |
by derby (Abbot) on Jan 30, 2003 at 15:38 UTC | |
by Anonymous Monk on Jan 30, 2003 at 16:44 UTC |