in reply to Re^2: Install CPAN module to another perl version
in thread Install CPAN module to another perl version

PS: When I change my shebang from "#!/usr/bin/env perl " to "#!/opt/perl-5.16/bin/perl" I get Internal Server Error. What's wrong ? ;/

Well, the webserver is not your shell, so $PATH is not the same ... use full paths, and then work through the checklists , brian's Guide to Solving Any Perl Problem, CGI Help Guide , Troubleshooting Perl CGI scripts ... More generic advice :) On debugging, verify everything, talk to teddybear ... checklists and more

  • Comment on Re^3: Install CPAN module to another perl version

Replies are listed 'Best First'.
Re^4: Install CPAN module to another perl version
by Martin90 (Sexton) on Aug 15, 2014 at 11:58 UTC
    SOLVED, thank you ;) As it turned out #!/opt/perl-5.16/bin/perl was right shebang.