chora_sid has asked for the wisdom of the Perl Monks concerning the following question:
Hi All,
Our application runs on Perl 5.5 on Solaris 5.8. We are trying to upgrade perl version as Perl 5.5 is not compatible with Oracle 10g client.
As I didn't get Perl 5.18 or above package for Solaris online, I have downloaded Perl 5.22 package for Unix(all variants)from ActivePerl site. I have updated my Perl code(Shebang line) to point to new Perl. However, I am getting below error while hitting the URL which calls a CGI file:
HTTP4068: cannot execute CGI script indexaf.cgi (exec() failure Invalid argument)
Can anyone please help on this.
#!/Path/to/New/Perl/Package -T use strict; use English; use lib '../../ddc/cgi-bin/'; use UPRO; use DDCGI; use DBI; use common; use indexaf; &indexaf::indexaf;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Perl Upgrade Issue: Invalid Argument error
by Corion (Patriarch) on May 16, 2018 at 13:13 UTC | |
|
Re: Perl Upgrade Issue: Invalid Argument error
by marto (Cardinal) on May 16, 2018 at 13:10 UTC | |
by chora_sid (Novice) on May 28, 2018 at 07:44 UTC | |
by Corion (Patriarch) on May 28, 2018 at 07:51 UTC | |
by marto (Cardinal) on May 28, 2018 at 08:49 UTC |