Skip Menu |

This queue is for tickets about the WWW-Search-MSN CPAN distribution.

Report information
The Basics
Id: 43339
Status: resolved
Priority: 0/
Queue: WWW-Search-MSN

People
Owner: Nobody in particular
Requestors: ngrandbois [...] microsolved.com
Cc:
AdminCc:

Bug Information
Severity: Critical
Broken in: 0.0105
Fixed in: (no value)



Subject: Can't call method "look_down"
Hello, I'm using the WWW::SEARCH::MSN module to do searches of MSN for domain names based on an IP address. Search value for a human would be: ip:<ipaddress>. Here's the code I'm using: my $search="IP:$ARGV[0]"; print $search,"\n"; my $sQuery = $search; my $oSearch = new WWW::Search('MSN'); $oSearch->native_query($sQuery); while (my $oResult = $oSearch->next_result()) { my @line = $oResult->as_HTML; foreach my $i (@line) { $line[$i] =~ m{ href="(.*?)"}i; print $1, "\n"; } } This works on resultant sets of more than 1 page. When MSN returns a result set with a single page of results, I get the following error: Can't call method "look_down" on an undefined value at /usr/local/share/perl/5.8.8/WWW/Search/MSN.pm line 157. Line 157 of the code is: my ($a_tag) = $pagination_div->look_down("_tag", "a", "class", "sb_pagN"); I think this furthers my hypothesis that the problem is a function of single vs multiple pages of results. Any help would be greatly appreciated. Thanks and have a great day, _nathan REFERENCES: =head1 NAME WWW::Search::MSN - backend for searching search.msn.com =head1 VERSION Version 0.0105 =cut Ubuntu 8.04 running the following kernel: Linux zanzibar 2.6.24-23-generic #1 SMP Mon Jan 26 00:13:11 UTC 2009 i686 GNU/Linux ngrandbois@zanzibar:/usr/local/bin$ perl -v This is perl, v5.8.8 built for i486-linux-gnu-thread-multi
Subject: wwwsearch.pl
#!/usr/bin/perl use WWW::Search; use WWW::SearchResult; use warnings; use strict; my $search="IP:$ARGV[0]"; print $search,"\n"; my $sQuery = $search; my $oSearch = new WWW::Search('MSN'); $oSearch->native_query($sQuery); while (my $oResult = $oSearch->next_result()) { my @line = $oResult->as_HTML; foreach my $i (@line) { $line[$i] =~ m{ href="(.*?)"}i; print $1, "\n"; } }
Hi! Thanks for your report. On Mon Feb 16 16:55:42 2009, ngrandbois wrote: Show quoted text
> Hello, > > I'm using the WWW::SEARCH::MSN module to do searches of MSN for domain > names based on an IP address. Search value for a human would be: > ip:<ipaddress>. > > Here's the code I'm using: > > my $search="IP:$ARGV[0]"; > > print $search,"\n"; > > my $sQuery = $search; > my $oSearch = new WWW::Search('MSN'); > $oSearch->native_query($sQuery); > while (my $oResult = $oSearch->next_result()) > { > my @line = $oResult->as_HTML; > foreach my $i (@line) { > $line[$i] =~ m{ href="(.*?)"}i; > print $1, "\n"; > } > } > > This works on resultant sets of more than 1 page. When MSN returns a > result set with a single page of results, I get the following error: >
Thanks! I'll take a look at it soonish. Regards, -- Shlomi Fish Show quoted text
> Can't call method "look_down" on an undefined value at > /usr/local/share/perl/5.8.8/WWW/Search/MSN.pm line 157. > > Line 157 of the code is: > my ($a_tag) = $pagination_div->look_down("_tag", "a", "class", "sb_pagN"); > > I think this furthers my hypothesis that the problem is a function of > single vs multiple pages of results. > > Any help would be greatly appreciated. > Thanks and have a great day, > _nathan > > REFERENCES: > =head1 NAME > WWW::Search::MSN - backend for searching search.msn.com > =head1 VERSION > Version 0.0105 > =cut > > Ubuntu 8.04 running the following kernel: > Linux zanzibar 2.6.24-23-generic #1 SMP Mon Jan 26 00:13:11 UTC 2009 > i686 GNU/Linux > > ngrandbois@zanzibar:/usr/local/bin$ perl -v > This is perl, v5.8.8 built for i486-linux-gnu-thread-multi
Hi! Sorry about forgetting about this bug. I was able to reproduce it and fixed it in WWW-Search-MSN-0.0106 that was just uploaded to CPAN. Please let me know if you encounter any further problems. Regards, -- Shlomi Fish
Subject: Re: [rt.cpan.org #43339] Resolved: Can't call method "look_down"
Date: Thu, 30 Apr 2009 11:21:27 -0400
To: bug-WWW-Search-MSN [...] rt.cpan.org
From: Nathan Grandbois <ngrandbois [...] microsolved.com>
Shlomi Fish via RT wrote: Show quoted text
> <URL: https://rt.cpan.org/Ticket/Display.html?id=43339 > > > According to our records, your request has been resolved. If you have any > further questions or concerns, please respond to this message.
Shlomi, It appears that I'm still getting this error. I attempted to install this via cpan, but was told my version was up to date. This was not true. I went to the cpan website, and downloaded version 0.0106. I followed the readme, and installed this module. Here's the entries in the .pm file: =head1 VERSION Version 0.0105 =cut our $VERSION = '0.0106'; Now, the actual error I'm getting is: Can't call method "look_down" on an undefined value at /usr/local/share/perl/5.8.8/WWW/Search/MSN.pm line 134. root@zanzibar:/usr/local/bin# ./wwwsearch.pl 38.112.48.21 IP:38.112.48.21 Can't call method "look_down" on an undefined value at /usr/local/share/perl/5.8.8/WWW/Search/MSN.pm line 134. root@zanzibar:/usr/local/bin# This is an error that occurs when a search on IP:<ip> returns a result set of a single page. When I do wwwsearch.pl on a different IP address, it gives me back what I'm expecting: root@zanzibar:/usr/local/bin# ./wwwsearch.pl 38.112.48.19 IP:38.112.48.19 http://stateofsecurity.com/ http://stateofsecurity.com/?p=550 http://www.secureassure.com/ http://CENTERFORINTERNETPOLICY.ORG --abbreviated-- The code has not changed from my originally posted version. If you would like me to repost it, I definitely can. Thanks, _nathan
Download smime.p7s
application/x-pkcs7-signature 3.2k

Message body not shown because it is not plain text.

On Thu Apr 30 11:21:49 2009, ngrandbois wrote: Show quoted text
> Shlomi Fish via RT wrote:
> > <URL: https://rt.cpan.org/Ticket/Display.html?id=43339 > > > > > According to our records, your request has been resolved. If you
have any Show quoted text
> > further questions or concerns, please respond to this message.
> > Shlomi, > > It appears that I'm still getting this error. I attempted to install > this via cpan, but was told my version was up to date. This was not > true. I went to the cpan website, and downloaded version 0.0106. I > followed the readme, and installed this module. Here's the entries in > the .pm file: > > > =head1 VERSION > > Version 0.0105 > > =cut > > our $VERSION = '0.0106'; >
These are fine. Show quoted text
> Now, the actual error I'm getting is: > Can't call method "look_down" on an undefined value at > /usr/local/share/perl/5.8.8/WWW/Search/MSN.pm line 134. > > root@zanzibar:/usr/local/bin# ./wwwsearch.pl 38.112.48.21 > IP:38.112.48.21 > Can't call method "look_down" on an undefined value at > /usr/local/share/perl/5.8.8/WWW/Search/MSN.pm line 134. > root@zanzibar:/usr/local/bin#
Please don't run wwwsearch.pl as root - it may be dangerous. Show quoted text
> > This is an error that occurs when a search on IP:<ip> returns a result > set of a single page. When I do wwwsearch.pl on a different IP address, > it gives me back what I'm expecting: > > root@zanzibar:/usr/local/bin# ./wwwsearch.pl 38.112.48.19 > IP:38.112.48.19 > http://stateofsecurity.com/ > http://stateofsecurity.com/?p=550 > http://www.secureassure.com/ > http://CENTERFORINTERNETPOLICY.ORG > --abbreviated-- > > The code has not changed from my originally posted version. If you would > like me to repost it, I definitely can. >
I've included a new script with some bug-fixes, and it also prints the version. For the record when running using the first IP, I don't get any results, and when running using the second IP, it is OK. Regards, -- Shlomi Fish Show quoted text
> > Thanks, > > _nathan
#!/usr/bin/perl use warnings; use strict; use WWW::Search; use WWW::SearchResult; use WWW::Search::MSN; my $search="IP:$ARGV[0]"; print $search,"\n"; print "Version == ", WWW::Search::MSN->VERSION(), "\n"; my $sQuery = $search; my $oSearch = new WWW::Search('MSN'); $oSearch->native_query($sQuery); while (my $oResult = $oSearch->next_result()) { my @line = $oResult->as_HTML; foreach my $l (@line) { $l =~ m{ href="(.*?)"}i; print $1, "\n"; } }
Subject: Re: [rt.cpan.org #43339] Can't call method "look_down"
Date: Thu, 30 Apr 2009 12:22:02 -0400
To: bug-WWW-Search-MSN [...] rt.cpan.org
From: Nathan Grandbois <ngrandbois [...] microsolved.com>
Shlomi Fish via RT wrote: Show quoted text
> I've included a new script with some bug-fixes, and it also prints the > version. For the record when running using the first IP, I don't get any > results, and when running using the second IP, it is OK.
Ok, I see you changed a few things. Thanks for fixing my error with Argument "<a href="http://nointruder.org">nointruder.org</a><br />..." isn't numeric in array element at /usr/local/bin/wwwsearch.pl line 20. Thanks!! Now, when running against the 38.112.48.19 address we get what's expected, as you indicate. However, when I run this versus IP addresses that do not have any search results, I get this error still. ngrandbois@zanzibar:/usr/local/bin$ ./wwwsearch.pl 38.112.48.21 IP:38.112.48.21 Version == 0.0106 Can't call method "look_down" on an undefined value at /usr/local/share/perl/5.8.8/WWW/Search/MSN.pm line 134. ngrandbois@zanzibar:/usr/local/bin$ ./wwwsearch.pl 24.123.61.102 IP:24.123.61.102 Version == 0.0106 Can't call method "look_down" on an undefined value at /usr/local/share/perl/5.8.8/WWW/Search/MSN.pm line 134. I copied your script over mine, so there were no modifications. When you run it versus the ips that have no results, do you not get this error? Thanks a lot!! _nathan
Download smime.p7s
application/x-pkcs7-signature 3.2k

Message body not shown because it is not plain text.

On Thu Apr 30 12:22:21 2009, ngrandbois wrote: Show quoted text
> Shlomi Fish via RT wrote: >
> > I've included a new script with some bug-fixes, and it also prints the > > version. For the record when running using the first IP, I don't get any > > results, and when running using the second IP, it is OK.
> > Ok, I see you changed a few things. Thanks for fixing my error with > Argument "<a href="http://nointruder.org">nointruder.org</a><br />..." > isn't numeric in array element at /usr/local/bin/wwwsearch.pl line 20. > Thanks!!
You're welcome. Show quoted text
> > Now, when running against the 38.112.48.19 address we get what's > expected, as you indicate. However, when I run this versus IP addresses > that do not have any search results, I get this error still. > > ngrandbois@zanzibar:/usr/local/bin$ ./wwwsearch.pl 38.112.48.21 > IP:38.112.48.21 > Version == 0.0106 > Can't call method "look_down" on an undefined value at > /usr/local/share/perl/5.8.8/WWW/Search/MSN.pm line 134. > ngrandbois@zanzibar:/usr/local/bin$ ./wwwsearch.pl 24.123.61.102 > IP:24.123.61.102 > Version == 0.0106 > Can't call method "look_down" on an undefined value at > /usr/local/share/perl/5.8.8/WWW/Search/MSN.pm line 134. >
That's what I'm getting: {{{{{{{{{{{{ shlomi:~/progs/perl/cpan/WWW/Search/trunk/modules/WWW-Search-MSN$ perl -Ilib wwwsearch.pl 38.112.48.21 IP:38.112.48.21 Version == 0.0106 shlomi:~/progs/perl/cpan/WWW/Search/trunk/modules/WWW-Search-MSN$ perl -Ilib wwwsearch.pl 24.123.61.102 IP:24.123.61.102 Version == 0.0106 shlomi:~/progs/perl/cpan/WWW/Search/trunk/modules/WWW-Search-MSN$ }}}}}}}}}}}} Show quoted text
> I copied your script over mine, so there were no modifications. When you > run it versus the ips that have no results, do you not get this error?
No, I'm not. Regards, Shlomi Fish Show quoted text
> > Thanks a lot!! > _nathan
Subject: Re: [rt.cpan.org #43339] Can't call method "look_down"
Date: Thu, 30 Apr 2009 17:55:56 -0400
To: bug-WWW-Search-MSN [...] rt.cpan.org
From: Nathan Grandbois <ngrandbois [...] microsolved.com>
Show quoted text
> {{{{{{{{{{{{ > shlomi:~/progs/perl/cpan/WWW/Search/trunk/modules/WWW-Search-MSN$ perl > -Ilib wwwsearch.pl 38.112.48.21 > IP:38.112.48.21 > Version == 0.0106 > shlomi:~/progs/perl/cpan/WWW/Search/trunk/modules/WWW-Search-MSN$ perl > -Ilib wwwsearch.pl 24.123.61.102 > IP:24.123.61.102 > Version == 0.0106 > shlomi:~/progs/perl/cpan/WWW/Search/trunk/modules/WWW-Search-MSN$ > }}}}}}}}}}}} >
Shlomi, I have completely removed the WWW::Search::MSN module from my cpan build directory. I have verified it to be removed by: ngrandbois@zanzibar:/usr/local/bin$ ./wwwsearch.pl 38.112.48.21 Can't locate WWW/Search/MSN.pm in @INC (@INC contains: /etc/perl /usr/local/lib/perl/5.8.8 /usr/local/share/perl/5.8.8 /usr/lib/perl5 /usr/share/perl5 /usr/lib/perl/5.8 /usr/share/perl/5.8 /usr/local/lib/site_perl .) at ./wwwsearch.pl line 8. BEGIN failed--compilation aborted at ./wwwsearch.pl line 8. After reinstalling the module via CPAN, I get this: ngrandbois@zanzibar:/usr/local/bin$ ./wwwsearch.pl 38.112.48.21 IP:38.112.48.21 Version == 0.0105 Can't call method "look_down" on an undefined value at /usr/local/share/perl/5.8.8/WWW/Search/MSN.pm line 134. Okay fine, maybe my cpan mirror doesn't have the latest one yet, so I download the tar.gz from the cpan website which is version 0.0106 and install it as per the README. Attempting to run the wwwsearch.pl script again, I get: ngrandbois@zanzibar:/usr/local/bin$ ./wwwsearch.pl 38.112.48.21 IP:38.112.48.21 Version == 0.0106 Can't call method "look_down" on an undefined value at /usr/local/share/perl/5.8.8/WWW/Search/MSN.pm line 134. I'm not really sure what to do next. Is this something to do with my perl installation? Perhaps the code you are using is diff than the one posted on cpan? Not sure, but I'd really like to use this module. Have anything I can try to help with debugging this? The following is the output of the perl -V command: Summary of my perl5 (revision 5 version 8 subversion 8) configuration: Platform: osname=linux, osvers=2.6.24-19-server, archname=i486-linux-gnu-thread-multi uname='linux palmer 2.6.24-19-server #1 smp sat jul 12 00:40:01 utc 2008 i686 gnulinux ' config_args='-Dusethreads -Duselargefiles -Dccflags=-DDEBIAN -Dcccdlflags=-fPIC -Darchname=i486-linux-gnu -Dprefix=/usr -Dprivlib=/usr/share/perl/5.8 -Darchlib=/usr/lib/perl/5.8 -Dvendorprefix=/usr -Dvendorlib=/usr/share/perl5 -Dvendorarch=/usr/lib/perl5 -Dsiteprefix=/usr/local -Dsitelib=/usr/local/share/perl/5.8.8 -Dsitearch=/usr/local/lib/perl/5.8.8 -Dman1dir=/usr/share/man/man1 -Dman3dir=/usr/share/man/man3 -Dsiteman1dir=/usr/local/man/man1 -Dsiteman3dir=/usr/local/man/man3 -Dman1ext=1 -Dman3ext=3perl -Dpager=/usr/bin/sensible-pager -Uafs -Ud_csh -Ud_ualarm -Uusesfio -Uusenm -Duseshrplib -Dlibperl=libperl.so.5.8.8 -Dd_dosuid -des' hint=recommended, useposix=true, d_sigaction=define usethreads=define use5005threads=undef useithreads=define usemultiplicity=define useperlio=define d_sfio=undef uselargefiles=define usesocks=undef use64bitint=undef use64bitall=undef uselongdouble=undef usemymalloc=n, bincompat5005=undef Compiler: cc='cc', ccflags ='-D_REENTRANT -D_GNU_SOURCE -DTHREADS_HAVE_PIDS -DDEBIAN -fno-strict-aliasing -pipe -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64', optimize='-O2', cppflags='-D_REENTRANT -D_GNU_SOURCE -DTHREADS_HAVE_PIDS -DDEBIAN -fno-strict-aliasing -pipe -I/usr/local/include' ccversion='', gccversion='4.2.3 (Ubuntu 4.2.3-2ubuntu7)', gccosandvers='' intsize=4, longsize=4, ptrsize=4, doublesize=8, byteorder=1234 d_longlong=define, longlongsize=8, d_longdbl=define, longdblsize=12 ivtype='long', ivsize=4, nvtype='double', nvsize=8, Off_t='off_t', lseeksize=8 alignbytes=4, prototype=define Linker and Libraries: ld='cc', ldflags =' -L/usr/local/lib' libpth=/usr/local/lib /lib /usr/lib libs=-lgdbm -lgdbm_compat -ldb -ldl -lm -lpthread -lc -lcrypt perllibs=-ldl -lm -lpthread -lc -lcrypt libc=/lib/libc-2.7.so, so=so, useshrplib=true, libperl=libperl.so.5.8.8 gnulibc_version='2.7' Dynamic Linking: dlsrc=dl_dlopen.xs, dlext=so, d_dlsymun=undef, ccdlflags='-Wl,-E' cccdlflags='-fPIC', lddlflags='-shared -L/usr/local/lib' Characteristics of this binary (from libperl): Compile-time options: MULTIPLICITY PERL_IMPLICIT_CONTEXT PERL_MALLOC_WRAP THREADS_HAVE_PIDS USE_ITHREADS USE_LARGE_FILES USE_PERLIO USE_REENTRANT_API Built under linux Compiled at Jan 14 2009 22:34:36 @INC: /etc/perl /usr/local/lib/perl/5.8.8 /usr/local/share/perl/5.8.8 /usr/lib/perl5 /usr/share/perl5 /usr/lib/perl/5.8 /usr/share/perl/5.8 /usr/local/lib/site_perl Thanks for your help, _nathan
Download smime.p7s
application/x-pkcs7-signature 3.2k

Message body not shown because it is not plain text.

On Thu Apr 30 17:56:16 2009, ngrandbois wrote: Show quoted text
> > {{{{{{{{{{{{ > > shlomi:~/progs/perl/cpan/WWW/Search/trunk/modules/WWW-Search-MSN$ perl > > -Ilib wwwsearch.pl 38.112.48.21 > > IP:38.112.48.21 > > Version == 0.0106 > > shlomi:~/progs/perl/cpan/WWW/Search/trunk/modules/WWW-Search-MSN$ perl > > -Ilib wwwsearch.pl 24.123.61.102 > > IP:24.123.61.102 > > Version == 0.0106 > > shlomi:~/progs/perl/cpan/WWW/Search/trunk/modules/WWW-Search-MSN$ > > }}}}}}}}}}}} > >
> > Shlomi, > > I have completely removed the WWW::Search::MSN module from my cpan build > directory. I have verified it to be removed by: > > ngrandbois@zanzibar:/usr/local/bin$ ./wwwsearch.pl 38.112.48.21 > Can't locate WWW/Search/MSN.pm in @INC (@INC contains: /etc/perl > /usr/local/lib/perl/5.8.8 /usr/local/share/perl/5.8.8 /usr/lib/perl5 > /usr/share/perl5 /usr/lib/perl/5.8 /usr/share/perl/5.8 > /usr/local/lib/site_perl .) at ./wwwsearch.pl line 8. > BEGIN failed--compilation aborted at ./wwwsearch.pl line 8. > > After reinstalling the module via CPAN, I get this: > > ngrandbois@zanzibar:/usr/local/bin$ ./wwwsearch.pl 38.112.48.21 > IP:38.112.48.21 > Version == 0.0105 > Can't call method "look_down" on an undefined value at > /usr/local/share/perl/5.8.8/WWW/Search/MSN.pm line 134. > > Okay fine, maybe my cpan mirror doesn't have the latest one yet, so I > download the tar.gz from the cpan website which is version 0.0106 and > install it as per the README. Attempting to run the wwwsearch.pl script > again, I get: > > ngrandbois@zanzibar:/usr/local/bin$ ./wwwsearch.pl 38.112.48.21 > IP:38.112.48.21 > Version == 0.0106 > Can't call method "look_down" on an undefined value at > /usr/local/share/perl/5.8.8/WWW/Search/MSN.pm line 134. > > I'm not really sure what to do next. Is this something to do with my > perl installation? Perhaps the code you are using is diff than the one > posted on cpan? Not sure, but I'd really like to use this module. Have > anything I can try to help with debugging this? >
It's possible that due to the fact your CPAN mirror is out-of-date, that you're using some out-of-date dependencies, which cause WWW::Search::MSN to fail. Please look into it. If this doesn't work, please record the HTTP request for one of the IPs using Wireshark, and send me the recording log. Show quoted text
> The following is the output of the perl -V command: > Summary of my perl5 (revision 5 version 8 subversion 8) configuration: > Platform: > osname=linux, osvers=2.6.24-19-server, > archname=i486-linux-gnu-thread-multi > uname='linux palmer 2.6.24-19-server #1 smp sat jul 12 00:40:01 utc
[SNIP] I've now tried it with my own copy of perl-5.8.8 and could not reproduce it: {{{{{{{{{{{{{{{{{{{{ shlomi:~/progs/perl/cpan/WWW/Search/trunk/modules/WWW-Search-MSN$ ~/apps/perl/perl-5.8.8-debug/bin/perl wwwsearch.pl 24.123.61.102 IP:24.123.61.102 Version == 0.0106 shlomi:~/progs/perl/cpan/WWW/Search/trunk/modules/WWW-Search-MSN$ ~/apps/perl/perl-5.8.8-debug/bin/perl -V Summary of my perl5 (revision 5 version 8 subversion 8) configuration: Platform: osname=linux, osvers=2.6.20-rc6, archname=i686-linux uname='linux telaviv1.shlomifish.org 2.6.20-rc6 #1 smp preempt thu jan 25 21:49:47 ist 2007 i686 intel(r) pentium(r) 4 cpu 2.40ghz gnulinux ' config_args='-de -Dprefix=/home/shlomi/apps/perl/perl-5.8.8-debug -Doptimize=-g' hint=recommended, useposix=true, d_sigaction=define usethreads=undef use5005threads=undef useithreads=undef usemultiplicity=undef useperlio=define d_sfio=undef uselargefiles=define usesocks=undef use64bitint=undef use64bitall=undef uselongdouble=undef usemymalloc=n, bincompat5005=undef Compiler: cc='cc', ccflags ='-DDEBUGGING -fno-strict-aliasing -pipe -Wdeclaration-after-statement -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/gdbm', optimize='-g', cppflags='-DDEBUGGING -fno-strict-aliasing -pipe -Wdeclaration-after-statement -I/usr/local/include -I/usr/include/gdbm' ccversion='', gccversion='4.1.2 20070115 (prerelease) (4.1.2-0.20070115.1mdv2007.1)', gccosandvers='' intsize=4, longsize=4, ptrsize=4, doublesize=8, byteorder=1234 d_longlong=define, longlongsize=8, d_longdbl=define, longdblsize=12 ivtype='long', ivsize=4, nvtype='double', nvsize=8, Off_t='off_t', lseeksize=8 alignbytes=4, prototype=define Linker and Libraries: ld='cc', ldflags =' -L/usr/local/lib' libpth=/usr/local/lib /lib /usr/lib libs=-lnsl -lgdbm -ldb -ldl -lm -lcrypt -lutil -lc perllibs=-lnsl -ldl -lm -lcrypt -lutil -lc libc=/lib/libc-2.4.so, so=so, useshrplib=false, libperl=libperl.a gnulibc_version='2.4' Dynamic Linking: dlsrc=dl_dlopen.xs, dlext=so, d_dlsymun=undef, ccdlflags='-Wl,-E' cccdlflags='-fpic', lddlflags='-shared -L/usr/local/lib' Characteristics of this binary (from libperl): Compile-time options: DEBUGGING PERL_MALLOC_WRAP USE_LARGE_FILES USE_PERLIO Built under linux Compiled at Jan 26 2007 00:22:08 %ENV: PERL5LIB="/home/shlomi/apps/perl/modules/lib/perl5/site_perl/5.10.0:/home/shlomi/apps/perl/modules/lib/perl5/site_perl/5.8.8:/home/shlomi/apps/perl/modules/lib/site_perl/5.10.0:/home/shlomi/apps/perl/modules/lib/site_perl/5.8.8:/home/shlomi/apps/perl/modules/lib/perl5/5.10.0:/home/shlomi/apps/perl/modules/lib/perl5/5.8.8" @INC: /home/shlomi/apps/perl/modules/lib/perl5/site_perl/5.10.0 /home/shlomi/apps/perl/modules/lib/perl5/site_perl/5.8.8 /home/shlomi/apps/perl/modules/lib/site_perl/5.10.0 /home/shlomi/apps/perl/modules/lib/site_perl/5.8.8/i686-linux /home/shlomi/apps/perl/modules/lib/site_perl/5.8.8 /home/shlomi/apps/perl/modules/lib/perl5/5.10.0 /home/shlomi/apps/perl/modules/lib/perl5/5.8.8 /home/shlomi/apps/perl/perl-5.8.8-debug/lib/5.8.8/i686-linux /home/shlomi/apps/perl/perl-5.8.8-debug/lib/5.8.8 /home/shlomi/apps/perl/perl-5.8.8-debug/lib/site_perl/5.8.8/i686-linux /home/shlomi/apps/perl/perl-5.8.8-debug/lib/site_perl/5.8.8 /home/shlomi/apps/perl/perl-5.8.8-debug/lib/site_perl . shlomi:~/progs/perl/cpan/WWW/Search/trunk/modules/WWW-Search-MSN$ }}}}}}}}}}}}}}}}}}}} So it seems to be some kind of problem on your end. Regards, Shlomi Fish
Resolving as fixed due to lack of responsiveness from the original reporter.