Dear fellow monks,
I've installed Perl interpreter in my local directory as follows:
$!which perl
/home/rsch/bioinfo/.perl/bin/perl
And I also have stored the .htaccess with the following
entries:
SetEnv PATH /home/rsch/bioinfo/.perl/bin:/home/rsch/bioinfo/bin
SetEnv PERL5LIB /home/rsch/bioinfo/lib/perl5/site_perl/5.8.7/sun4-sola
+ris:/home/rsch/bioinfo/lib/perl5/site_perl/5.8.7
However upon running my cgi-script (hello.cgi) like this:
#!/home/rsch/bioinfo/.perl/bin/perl
print "Content-type: text/html\n\n";
print "Hello World !! It works.\n";
It gives the following error log.
ld.so.1: /home/rsch/bioinfo/.perl/bin/perl: fatal: libc.so.1: version
+`SUNW_1.19' not found (required by file /home/rsch/bioinfo/.perl/bin/
+perl)
Any idea what went wrong with my scheme? Especially the .htaccess entry?
Some notes:
- The default (#!/usr/local/bin/perl) Perl version in my office system is too old (version 5.004).
That's why I installed the latest version of Perl locally.
- I can execute a normal perl script (*.pl) with my locally installed perl with no problem with the new shebang (#!/home/rsch/bioinfo/.perl/bin/perl).
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.