Perl DBI >> Perl lib version not match executable version

by Wei-Ling.Chong » Fri, 08 Dec 2006 14:33:42 GMT

Hi Tim,

Need your advise.

I have Solaris 5.8 (x86) server and running Oracle Application Server, I
install perl-5.8.7-sol10-x86-local.gz.

When I run my perl script, I am getting error below. How to resolve the
problem?

Thanks a lot.

[Fri Dec 8 14:18:45 2006] [error] [client 165.204.172.185] [ecid:
1165558725:165.204.178.145:8267
:0:37,0] Premature end of script headers:
/oracle/app/oracle/eq/web/cgi/ppcd/ppcd_approval_ora.pl
Perl lib version (v5.6.1) doesn't match executable version (v5.8.7) at
/oracle/app/oracle/product/
oas10.1.2.0.2/perl/lib/5.6.1/i86pc-solaris/Config.pm line 21.
Compilation failed in require at
/oracle/app/oracle/product/oas10.1.2.0.2/perl/lib/5.6.1/i86pc-sol
aris/DynaLoader.pm line 25.
BEGIN failed--compilation aborted at
/oracle/app/oracle/product/oas10.1.2.0.2/perl/lib/5.6.1/i86pc
-solaris/DynaLoader.pm line 25.
Compilation failed in require at
/oracle/app/oracle/product/oas10.1.2.0.2/perl/lib/site_perl/5.6.1
/i86pc-solaris/DBI.pm line 152.
BEGIN failed--compilation aborted at
/oracle/app/oracle/product/oas10.1.2.0.2/perl/lib/site_perl/5
..6.1/i86pc-solaris/DBI.pm line 152.
Compilation failed in require at
/oracle/app/oracle/product/oas10.1.2.0.2/perl/lib/site_perl/5.6.1
/i86pc-solaris/Oraperl.pm line 25.
BEGIN failed--compilation aborted at
/oracle/app/oracle/product/oas10.1.2.0.2/perl/lib/site_perl/5
..6.1/i86pc-solaris/Oraperl.pm line 25.
Compilation failed in require at
/oracle/app/oracle/eq/web/cgi/ppcd/ppcd_approval_ora.pl line 33.
BEGIN failed--compilation aborted at
/oracle/app/oracle/eq/web/cgi/ppcd/ppcd_approval_ora.pl line
33.







Perl DBI >> Perl lib version not match executable version

by HMerrill » Fri, 08 Dec 2006 20:07:54 GMT


You may have more than one problem, but this one I
recognize - see this near the top of the errors

Premature end of script headers:

This means that your script is writing out an incomplete
html document, and it most likely means that the headers
are incomplete. IIRC, to begin your html document you
need to write out the Content-type line and then a blank
line and then you can start your html tag, like this

Content-type: text/html

<html>
<head>
<title>This is the Title of My Document</title>
</head>
<body>

your content goes here

</body>
</html>

HTH.

Hardy Merrill


Server, I
the
at



Perl DBI >> Perl lib version not match executable version

by jonathan.leffler » Fri, 08 Dec 2006 20:29:37 GMT





And for the rest, note that 5.6.1 in the Oracle pathway - it isn't the same
as 5.8.x that you're using.

Either downgrade to Perl 5.6.1 or upgrade the Oracle stuff to Perl 5.8.x.

--
Jonathan Leffler < XXXX@XXXXX.COM > #include <disclaimer.h>
Guardian of DBD::Informix - v2005.02 - http://dbi.perl.org
"I don't suffer from insanity - I enjoy every minute of it."



RE: Perl lib version not match executable version

by rjk-dbi » Fri, 08 Dec 2006 22:49:59 GMT




That often happens when the script fails to compile. ;)

Ronald



RE: Perl lib version not match executable version

by Wei-Ling.Chong » Fri, 08 Dec 2006 23:15:45 GMT

Thanks, but it does not happen to normal perl script that not using
oraperl.
How can I solve the perl version conflict problem?
I can't find the 5.6.1 for Solaris 10 x86.
I have installed DBI and DBD.
Please help.

-----Original Message-----
From: Ronald Kimball [mailto: XXXX@XXXXX.COM ]
Sent: Friday, December 08, 2006 10:50 PM
To: 'Hardy Merrill'; Chong, Wei-Ling; XXXX@XXXXX.COM
Subject: RE: Perl lib version not match executable version





That often happens when the script fails to compile. ;)

Ronald







Perl lib version not match executable version

by csarnows » Sat, 09 Dec 2006 02:44:17 GMT

Well, you do have perl 5.6.1 already installed, but it is installed
as part of the OAS.

In your original email you said you were running Solaris 5.8. Did you
mean Perl 5.8?
Because you mention Solaris 10 below.

It seems from the error messages you originally sent that you have
gotten DBI and DBD
that were compiled against perl 5.8 to get installed into your perl
5.6.1 tree. But I may be missing something.

Is this a test machine? Are you running the latest OAS release, and
if not, can you upgrade that?







[original error message]

--
Christopher Sarnowski
XXXX@XXXXX.COM
Penn Bioinformatics Core
1316 Blockley Hall MC 6021
(215) 746-7784




RE: Perl lib version not match executable version

by Wei-Ling.Chong » Tue, 12 Dec 2006 15:08:15 GMT

Hi,
The same perl script put in other server, does not have this kind of
problem, it is not perl script html problem.
It sounds like there are two perl versions and conflict with Oraperl.
Please help.

-----Original Message-----
From: Hardy Merrill [mailto: XXXX@XXXXX.COM ]
Sent: Friday, December 08, 2006 8:08 PM
To: Chong, Wei-Ling; XXXX@XXXXX.COM
Subject: Re: Perl lib version not match executable version

You may have more than one problem, but this one I
recognize - see this near the top of the errors

Premature end of script headers:

This means that your script is writing out an incomplete
html document, and it most likely means that the headers
are incomplete. IIRC, to begin your html document you
need to write out the Content-type line and then a blank
line and then you can start your html tag, like this

Content-type: text/html

<html>
<head>
<title>This is the Title of My Document</title>
</head>
<body>

your content goes here

</body>
</html>

HTH.

Hardy Merrill


Server, I
the
at






Perl lib version not match executable version

by jonathan.leffler » Tue, 12 Dec 2006 23:56:46 GMT







How can we possibly help?

You need to ensure that the correct version of Perl is used by whatever is
working with your module. Clearly, there is something different about the
setup between the two machines; if there was no difference, you'd get the
same behaviour on both. You need to find that difference, and fix the
machine where things are broken to match the machine where things work.


--
Jonathan Leffler < XXXX@XXXXX.COM > #include <disclaimer.h>
Guardian of DBD::Informix - v2005.02 - http://dbi.perl.org
"I don't suffer from insanity - I enjoy every minute of it."



RE: Perl lib version not match executable version

by Wei-Ling.Chong » Fri, 15 Dec 2006 10:04:48 GMT




I still having the problem with perl version conflict.

There is no 5.6.1 perl for Solaris 10 x86. Please help.

Thanks.





Chong, Wei-Ling

Software Dev. Group

AMD Penang, Malaysia

Tel (604) 252 2557

Fax (604) 6436307

Email XXXX@XXXXX.COM <BLOCKED::mailto: XXXX@XXXXX.COM >



________________________________

From: Jonathan Leffler [mailto: XXXX@XXXXX.COM ]
Sent: Friday, December 08, 2006 8:30 PM
To: Hardy Merrill
Cc: Chong, Wei-Ling; XXXX@XXXXX.COM
Subject: Re: Perl lib version not match executable version





On 12/8/06, Hardy Merrill < XXXX@XXXXX.COM > wrote:

You may have more than one problem, [...one problem explained...]

wrote:
I
the
at
[...]


And for the rest, note that 5.6.1 in the Oracle pathway - it isn't the
same as 5.8.x that you're using.

Either downgrade to Perl 5.6.1 or upgrade the Oracle stuff to Perl
5.8.x.

--
Jonathan Leffler < XXXX@XXXXX.COM > #include <disclaimer.h>
Guardian of DBD::Informix - v2005.02 - http://dbi.perl.org
"I don't suffer from insanity - I enjoy every minute of it."


<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns:st1="urn:schemas-microsoft-com:office:smarttags" xmlns="http://www.w3.org/TR/REC-html40">

<head>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=us-ascii">
<meta name=Generator content="Microsoft Word 11 (filtered medium)">
<!--[if !mso]>
<style>
v\:* {behavior:url(#default#VML);}
o\:* {behavior:url(#default#VML);}
w\:* {behavior:url(#default#VML);}
..shape {behavior:url(#default#VML);}
</style>
<![endif]--><o:SmartTagType
namespaceuri="urn:schemas-microsoft-com:office:smarttags" name="place"/>
<o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
name="country-region"/>
<o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
name="City"/>
<!--[if !mso]>
<style>
st1\:*{behavior:url(#default#ieooui) }
</style>
<![endif]-->
<style>
<!--
/* Font Definitions */
@font-face
{font-family:Tahoma;
panose-1:2 11 6 4 3 5 4 4 2 4;}
@font-face
{font-family:Verdana;
panose-1:2 11 6 4 3 5 4 4 2 4;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
{margin:0in;
margin-bottom:.0001pt;
font-size:12.0pt;
font-family:"Times New Roman";}
a:link, span.MsoHyperlink
{color:blue;
text-decoration:underline;}
a:visited, span.MsoHyperlinkFollowed
{color:blue;
text-decoration:underline;}
span.EmailStyle18
{mso-style-type:personal-reply;
font-family:Arial;
color:navy;}
@page Section1
{size:8.5in 11.0in;
margin:1.0in 1.25in 1.0in 1.25in;}
div.Section1
{page:Section1;}
-->
</style>

</head>

<body lang=EN-US link=blue vlink=blue>

<div class=Section1>

<p class=MsoNormal><font size=2 color=navy face=Arial><span style='font-size:
10.0pt;font-family:Arial;color:navy'>I still having the problem with perl
version conflict.<o:p></o:p></span></font></p>

<p class=MsoNormal><font size=2 color=navy face=Arial><span style='font-size:
10.0pt;font-family:Arial;color:navy'>There is no 5.6.1 perl for Solaris 10 x86.
Please help.<o:p></o:p></span></fo

RE: Perl lib version not match executable version

by Wei-Ling.Chong » Fri, 15 Dec 2006 10:11:08 GMT



Normal perl script is working fine except those require Oraperl.





________________________________

From: Chong, Wei-Ling
Sent: Friday, December 15, 2006 10:05 AM
To: XXXX@XXXXX.COM
Subject: RE: Perl lib version not match executable version



I still having the problem with perl version conflict.

There is no 5.6.1 perl for Solaris 10 x86. Please help.

Thanks.





________________________________

From: Jonathan Leffler [mailto: XXXX@XXXXX.COM ]
Sent: Friday, December 08, 2006 8:30 PM
To: Hardy Merrill
Cc: Chong, Wei-Ling; XXXX@XXXXX.COM
Subject: Re: Perl lib version not match executable version







You may have more than one problem, [...one problem explained...]


I
the
at
[...]


And for the rest, note that 5.6.1 in the Oracle pathway - it isn't the
same as 5.8.x that you're using.

Either downgrade to Perl 5.6.1 or upgrade the Oracle stuff to Perl
5.8.x.

--
Jonathan Leffler < XXXX@XXXXX.COM > #include <disclaimer.h>
Guardian of DBD::Informix - v2005.02 - http://dbi.perl.org
"I don't suffer from insanity - I enjoy every minute of it."




RE: Perl lib version not match executable version

by Wei-Ling.Chong » Fri, 15 Dec 2006 16:18:51 GMT



Thread Previous
< http://beta.nntp.perl.org/group/perl.dbi.users/2006/12/msg30592.html> ;
| Thread Next
< http://beta.nntp.perl.org/group/perl.dbi.users/2006/12/msg30590.html> ;

From:

Christopher Sarnowski

Date:

December 8, 2006 10:44

Subject:

Re: Perl lib version not match executable version

Well, you do have perl 5.6.1 already installed, but it is installed
as part of the OAS.


In your original email you said you were running Solaris 5.8. Did you
mean Perl 5.8?
Because you mention Solaris 10 below.
and DBD into the machine after Oracle HTTP_Server installation.

It seems from the error messages you originally sent that you have
gotten DBI and DBD
that were compiled against perl 5.8 to get installed into your perl
5.6.1 tree. But I may be missing something.

Is this a test machine? Are you running the latest OAS release, and
if not, can you upgrade that?






________________________________

From: Chong, Wei-Ling
Sent: Friday, December 15, 2006 10:11 AM
To: ' XXXX@XXXXX.COM '
Subject: RE: Perl lib version not match executable version



Normal perl script is working fine except those require Oraperl.





________________________________

From: Chong, Wei-Ling
Sent: Friday, December 15, 2006 10:05 AM
To: XXXX@XXXXX.COM
Subject: RE: Perl lib version not match executable version



I still having the problem with perl version conflict.

There is no 5.6.1 perl for Solaris 10 x86. Please help.

Thanks.





________________________________

From: Jonathan Leffler [mailto: XXXX@XXXXX.COM ]
Sent: Friday, December 08, 2006 8:30 PM
To: Hardy Merrill
Cc: Chong, Wei-Ling; XXXX@XXXXX.COM
Subject: Re: Perl lib version not match executable version







You may have more than one problem, [...one problem explained...]


I
the
at
[...]


And for the rest, note that 5.6.1 in the Oracle pathway - it isn't the
same as 5.8.x that you're using.

Either downgrade to Perl 5.6.1 or upgrade the Oracle stuff to Perl
5.8.x.

--
Jonathan Leffler < XXXX@XXXXX.COM > #include <disclaimer.h>
Guardian of DBD::Informix - v2005.02 - http://dbi.perl.org
"I don't suffer from insanity - I enjoy every minute of it."




RE: Perl lib version not match executable version

by Wei-Ling.Chong » Fri, 29 Dec 2006 07:50:40 GMT


I have reinstalled the 10g HTTP Server and found it comes with Perl
5.6.1.

Now I would like to try to uninstall the perl I installed manually,
version 5.8.7.



pngedms3% pkginfo -l | grep perl

PKGINST: SMCperl

NAME: perl

PKGINST: SUNWperl-xml-parser

PKGINST: SUNWperl-xml-parser-devel-share

PKGINST: SUNWperl584core

PKGINST: SUNWperl584man

PKGINST: SUNWperl584usr



I tried command "pkginfo -l | grep perl" but the 5.8.7 is not listed,
how I can remove perl 5.8.7?

5.8.4 is the default perl installed in /usr/bin.
Please help.

Thanks.





________________________________

From: Chong, Wei-Ling
Sent: Friday, December 15, 2006 4:19 PM
To: ' XXXX@XXXXX.COM '
Subject: RE: Perl lib version not match executable version



Thread Previous
<http://beta.nntp.perl.org/group/perl.dbi.users/2006/12/msg30592.html>
| Thread Next
<http://beta.nntp.perl.org/group/perl.dbi.users/2006/12/msg30590.html>

From:

Christopher Sarnowski

Date:

December 8, 2006 10:44

Subject:

Re: Perl lib version not match executable version

Well, you do have perl 5.6.1 already installed, but it is installed
as part of the OAS.


In your original email you said you were running Solaris 5.8. Did you
mean Perl 5.8?
Because you mention Solaris 10 below.
and DBD into the machine after Oracle HTTP_Server installation.

It seems from the error messages you originally sent that you have
gotten DBI and DBD
that were compiled against perl 5.8 to get installed into your perl
5.6.1 tree. But I may be missing something.

Is this a test machine? Are you running the latest OAS release, and
if not, can you upgrade that?






________________________________

From: Chong, Wei-Ling
Sent: Friday, December 15, 2006 10:11 AM
To: ' XXXX@XXXXX.COM '
Subject: RE: Perl lib version not match executable version



Normal perl script is working fine except those require Oraperl.





________________________________

From: Chong, Wei-Ling
Sent: Friday, December 15, 2006 10:05 AM
To: XXXX@XXXXX.COM
Subject: RE: Perl lib version not match executable version



I still having the problem with perl version conflict.

There is no 5.6.1 perl for Solaris 10 x86. Please help.

Thanks.





________________________________

From: Jonathan Leffler [mailto: XXXX@XXXXX.COM ]
Sent: Friday, December 08, 2006 8:30 PM
To: Hardy Merrill
Cc: Chong, Wei-Ling; XXXX@XXXXX.COM
Subject: Re: Perl lib version not match executable version





On 12/8/06, Hardy Merrill < XXXX@XXXXX.COM > wrote:

You may have more than one problem, [...one problem explained...]

wrote:
I
the
at
[...]


And for the rest, note that 5.6.1 in the Oracle pathway - it isn't the
same as 5.8.x that you're using.

Either downgrade to Perl 5.6.1 or upgrade the Oracle stuff to Perl
5.8.x.

--
Jonathan Leffler < XXXX@XXXXX.COM > #include <disclaimer.h>
Guardian of DBD::Informix - v2005.02 - http://dbi.perl.org
"I don't suffer from insanity - I enjoy every minute of it."




RE: Perl lib version not match executable version

by Wei-Ling.Chong » Fri, 05 Jan 2007 10:05:21 GMT


Anyone can help?

Thanks.





________________________________

From: Chong, Wei-Ling
Sent: Friday, December 29, 2006 7:51 AM
To: Chong, Wei-Ling; ' XXXX@XXXXX.COM '
Subject: RE: Perl lib version not match executable version



I have reinstalled the 10g HTTP Server and found it comes with Perl
5.6.1.

Now I would like to try to uninstall the perl I installed manually,
version 5.8.7.



pngedms3% pkginfo -l | grep perl

PKGINST: SMCperl

NAME: perl

PKGINST: SUNWperl-xml-parser

PKGINST: SUNWperl-xml-parser-devel-share

PKGINST: SUNWperl584core

PKGINST: SUNWperl584man

PKGINST: SUNWperl584usr



I tried command "pkginfo -l | grep perl" but the 5.8.7 is not listed,
how I can remove perl 5.8.7?

5.8.4 is the default perl installed in /usr/bin.
Please help.

Thanks.





________________________________

From: Chong, Wei-Ling
Sent: Friday, December 15, 2006 4:19 PM
To: ' XXXX@XXXXX.COM '
Subject: RE: Perl lib version not match executable version



Thread Previous
<http://beta.nntp.perl.org/group/perl.dbi.users/2006/12/msg30592.html>
| Thread Next
<http://beta.nntp.perl.org/group/perl.dbi.users/2006/12/msg30590.html>

From:

Christopher Sarnowski

Date:

December 8, 2006 10:44

Subject:

Re: Perl lib version not match executable version

Well, you do have perl 5.6.1 already installed, but it is installed
as part of the OAS.


In your original email you said you were running Solaris 5.8. Did you
mean Perl 5.8?
Because you mention Solaris 10 below.
and DBD into the machine after Oracle HTTP_Server installation.

It seems from the error messages you originally sent that you have
gotten DBI and DBD
that were compiled against perl 5.8 to get installed into your perl
5.6.1 tree. But I may be missing something.

Is this a test machine? Are you running the latest OAS release, and
if not, can you upgrade that?






________________________________

From: Chong, Wei-Ling
Sent: Friday, December 15, 2006 10:11 AM
To: ' XXXX@XXXXX.COM '
Subject: RE: Perl lib version not match executable version



Normal perl script is working fine except those require Oraperl.





________________________________

From: Chong, Wei-Ling
Sent: Friday, December 15, 2006 10:05 AM
To: XXXX@XXXXX.COM
Subject: RE: Perl lib version not match executable version



I still having the problem with perl version conflict.

There is no 5.6.1 perl for Solaris 10 x86. Please help.

Thanks.





________________________________

From: Jonathan Leffler [mailto: XXXX@XXXXX.COM ]
Sent: Friday, December 08, 2006 8:30 PM
To: Hardy Merrill
Cc: Chong, Wei-Ling; XXXX@XXXXX.COM
Subject: Re: Perl lib version not match executable version





On 12/8/06, Hardy Merrill < XXXX@XXXXX.COM > wrote:

You may have more than one problem, [...one problem explained...]

wrote:
I
the
at
[...]


And for the rest, note that 5.6.1 in the Oracle pathway - it isn't the
same as 5.8.x that you're using.

Either downgrade to Perl 5.6.1 or upgrade the Oracle stuff to Perl
5.8.x.

--
Jonathan Leffler < XXXX@XXXXX.COM > #include <disclaimer.h>
Guardian of DBD::Informix - v2005.02 - http://dbi.perl.org
"I don't suffer from insanity - I enjoy every minute of it."




Perl lib version not match executable version

by scoles » Fri, 05 Jan 2007 20:26:15 GMT

e will need a little more to go on.

OS, Version of DBI, DBD and what is missing
----- Original Message -----
From: "Chong, Wei-Ling" < XXXX@XXXXX.COM >
To: < XXXX@XXXXX.COM >
Sent: Thursday, January 04, 2007 9:05 PM
Subject: RE: Perl lib version not match executable version


Anyone can help?

Thanks.





________________________________

From: Chong, Wei-Ling
Sent: Friday, December 29, 2006 7:51 AM
To: Chong, Wei-Ling; ' XXXX@XXXXX.COM '
Subject: RE: Perl lib version not match executable version



I have reinstalled the 10g HTTP Server and found it comes with Perl
5.6.1.

Now I would like to try to uninstall the perl I installed manually,
version 5.8.7.



pngedms3% pkginfo -l | grep perl

PKGINST: SMCperl

NAME: perl

PKGINST: SUNWperl-xml-parser

PKGINST: SUNWperl-xml-parser-devel-share

PKGINST: SUNWperl584core

PKGINST: SUNWperl584man

PKGINST: SUNWperl584usr



I tried command "pkginfo -l | grep perl" but the 5.8.7 is not listed,
how I can remove perl 5.8.7?

5.8.4 is the default perl installed in /usr/bin.
Please help.

Thanks.





________________________________

From: Chong, Wei-Ling
Sent: Friday, December 15, 2006 4:19 PM
To: ' XXXX@XXXXX.COM '
Subject: RE: Perl lib version not match executable version



Thread Previous
<http://beta.nntp.perl.org/group/perl.dbi.users/2006/12/msg30592.html>
| Thread Next
<http://beta.nntp.perl.org/group/perl.dbi.users/2006/12/msg30590.html>

From:

Christopher Sarnowski

Date:

December 8, 2006 10:44

Subject:

Re: Perl lib version not match executable version

Well, you do have perl 5.6.1 already installed, but it is installed
as part of the OAS.


In your original email you said you were running Solaris 5.8. Did you
mean Perl 5.8?
Because you mention Solaris 10 below.
and DBD into the machine after Oracle HTTP_Server installation.

It seems from the error messages you originally sent that you have
gotten DBI and DBD
that were compiled against perl 5.8 to get installed into your perl
5.6.1 tree. But I may be missing something.

Is this a test machine? Are you running the latest OAS release, and
if not, can you upgrade that?






________________________________

From: Chong, Wei-Ling
Sent: Friday, December 15, 2006 10:11 AM
To: ' XXXX@XXXXX.COM '
Subject: RE: Perl lib version not match executable version



Normal perl script is working fine except those require Oraperl.





________________________________

From: Chong, Wei-Ling
Sent: Friday, December 15, 2006 10:05 AM
To: XXXX@XXXXX.COM
Subject: RE: Perl lib version not match executable version



I still having the problem with perl version conflict.

There is no 5.6.1 perl for Solaris 10 x86. Please help.

Thanks.





________________________________

From: Jonathan Leffler [mailto: XXXX@XXXXX.COM ]
Sent: Friday, December 08, 2006 8:30 PM
To: Hardy Merrill
Cc: Chong, Wei-Ling; XXXX@XXXXX.COM
Subject: Re: Perl lib version not match executable version





On 12/8/06, Hardy Merrill < XXXX@XXXXX.COM > wrote:

You may have more than one problem, [...one problem explained...]

wrote:
I
the
at
[...]


And for the rest, note that 5.6.1 in the Oracle pathway - it isn't the
same as 5.8.x that you're using.

Either downgrade to Perl 5.6.1 or upgrade the Oracle st

RE: Perl lib version not match executable version

by ron » Sat, 06 Jan 2007 03:52:57 GMT




Hi


Is this Perl in it's own directory? If so, delete that directory. If not, the
situation is far more complicated :-(.
--
Cheers
Ron Savage, XXXX@XXXXX.COM on 6/01/2007
http://savage.net.au/index.html
Let the record show: Microsoft is not an Australian company



Similar Threads

1. Perl lib version (v5.6.0) doesn't match executable version (v5.8.0) - Perl

2. MD5 (version 2.36) not match with boottrap parameters on perl 5.8 lib (version 2.16)

Hi guys,

I've bumped into a problem where i used

BEGIN{ require "./MD5.pm"; import Digest::MD5 "md5_hex"; }

my $salt = 'blahblah';

my $idnum = '1234567';

print md5_hex($salt . $idnum), "\n";

i have perl 5.8 on the server and i don't have permission to install
any CPAN modules.

i put a MD5.pm under the directory where i execute this script but got
a incompatible error as shown in the subject. anyone knows where i can
get one copy of MD5.pm that matches with Perl 5.8? or any alternative
solutions?

thanks!

3. DBI object version 1.32 does not match $DBI::VERSION 1.48 - Perl

4. Doesn't match executable version

I run perldoc in windows, it shows the following error, please ask how
to solve it, thanks!

Perl lib version (v5.6.1) doesn't match executable version (v5.8.8) at
\product\10.1.0\Db_1\perl\5.6.1\lib\MSWin32-x86/Config.pm line 21.
Compilation failed in require at c:/Perl/lib/Pod/Perldoc.pm line 7.
BEGIN failed--compilation aborted at c:/Perl/lib/Pod/Perldoc.pm line 7
Compilation failed in require at c:\Perl\bin/perldoc.bat line 22.
BEGIN failed--compilation aborted at c:\Perl\bin/perldoc.bat line 22.

5. what is the relation bn Perl version , Perl byteloader & OS version - Perl

6. migrating perl from version x to version y

Can some one tell me if there is an easy way generally speaking to migrate
one version of perl and the modules installed under it to another version?

Also, in this specific case I want to go from 5.00503 to 5.8.0 The wrinkle
is that the box that needs to be upgraded does not have http/ftp access to
the world and can only be accessed through several hops from inside our
network. If this were a file system I needed to move, I could simply tar it
up and move it over. Is there something similar for perl?

Links/docs are appreciated.

Thanks!

richf

7. DBD::Oracle object version 1.15 does not match bootstrap parameter 1.06 - Perl DBI

8. DBD::mysql object version 2.9003 does not match bootstrap parameter

Hi everyone,

Machine info: Fedora Core 3, MySQL-server-4.1.9, and
perl-DBD-MySQL-2.9003-5

When I try to use mysqlhotcopy command to backup database, following
error occurs :(&

install_driver(mysql) failed: DBD::mysql object version 2.9003 does
not match bootstrap parameter 2.0419 at
/usr/lib/perl5/5.8.5/i386-linux-thread-multi/DynaLoader.pm line 253.
Compilation failed in require at (eval 4) line 3.

I installed perl-DBD-MySQL thru up2date. Please help me..

Thanks, 

Azhu