... For this partivular case, please read http://spews.org/ask.cgi?S3056 ... Off-topic (I'm only using perl for this, not mod_perl ;-) ) Since last weekend,...
59620
ETarazi@...
Jul 1, 2004 3:58 pm
Hi, I'm doing some XSL transformations in perl via the libxml2 package. libxml2, at least for me, is a pre-compiled third-party package that does XML stuff...
59621
mike chamberlain
mike.chamberlain@...
Jul 1, 2004 4:25 pm
... Are you sure your not trying to download a DTD when processing the file? I've seen XSLT hang for about a minute if that happens (if it can't get the DTD)....
59622
ETarazi@...
Jul 1, 2004 4:33 pm
There is no DTD involved in this at all... -- Report problems: http://perl.apache.org/bugs/ Mail list info: http://perl.apache.org/maillist/modperl.html List...
59623
Perrin Harkins
perrin@...
Jul 1, 2004 5:15 pm
... There is some info on reporting bugs here (assuming you are using apache 2): http://perl.apache.org/docs/2.0/user/help/help.html#Reporting_Problems Some of...
59624
Clayton Cottingham
drfrog@...
Jul 1, 2004 5:20 pm
i have use XML::LibXML on linux without those sort of speed crawls, you might want to look at trying it on a linux machine ... -- Report problems:...
59625
Rude Yak
rudeyak@...
Jul 1, 2004 5:44 pm
Greetings, mod_perl gurus. I'm trying to get mod_perl and Apache 2.0.49 (I guess now 50 in the last 24 hours :-) built on my Solaris 8 machine but I'm running...
59626
Stas Bekman
stas@...
Jul 1, 2004 6:19 pm
... Erick, please read http://perl.apache.org/bugs/ and submit a new problem report as explained there. Thanks. -- ...
59627
David Arnold
darnold@...
Jul 1, 2004 9:03 pm
All, I have this in my httpd.conf: <Location /protected> PerlOptions +GlobalRequest AuthName Anonymous AuthType Basic PerlAuthenHandler Apache::AuthAnon ...
59628
Robert Bruccoleri
bruc@...
Jul 2, 2004 12:31 am
... 1. Problem Description: Test case t/apr-ext/uuid.t fails with the following message: t/apr-ext/uuid..........................Can39;t load...
59629
Stas Bekman
stas@...
Jul 2, 2004 1:04 am
... First of all, you can safely proceed and run 'make install'. apr-ext are not modperl tests. But let's get this fixed too. See below. ... That's your...
59630
Joe Schaefer
joe+gmane@...
Jul 2, 2004 1:51 am
Stas Bekman <stas@...> writes: [...] ... Stas, mp2 may need apr-config --link-ld --ldflags --libs on some platforms. I've seen this on FreeBSD, for ...
59631
Geoffrey Young
geoff@...
Jul 2, 2004 2:32 am
... your script was written for mod_perl 1.0, but you seem to be using mod_perl 2.0 for your server. there will be a few things you will need to change to get...
59632
Stas Bekman
stas@...
Jul 2, 2004 4:41 am
... But --ldflags are for loading, this is the linking stage, isn't it? Robert's problem is that MakeMaker failed to find those libraries, since probably...
59633
benoit
benoit@...
Jul 2, 2004 2:11 pm
Hello. I'm trying to build an Apache configuration that makes it possible for all the developpers in my group to work with their own Apache process. For doing...
59634
benoit
benoit@...
Jul 2, 2004 3:15 pm
Ok, now I'm ashamed. After some more RTFM, I found that there was a missing-closing-parens festival going on in my configuration file... So, for the record...
59635
Bevelock, Mike
bevelock@...
Jul 2, 2004 3:54 pm
A nice enhancement to Apache::Reload would be the ability to explicitly "register" and reload required library files. For example, if a sub in...
59636
Perrin Harkins
perrin@...
Jul 2, 2004 4:05 pm
... It won't with this patch, unless common_subs.pl declares a package. If common_subs.pl is just a bunch of subs that get pulled into the current script's...
59637
Stas Bekman
stas@...
Jul 2, 2004 5:13 pm
... From Changes: =item 1.21_03 - March 15, 2000 new variable $Apache::Server::StrictPerlSections, if true, will croak <Perl> section generates invalid Apache...
59638
Bevelock, Mike
bevelock@...
Jul 2, 2004 6:09 pm
... Thank you for the reply, Perrin. Actually, all our required libs declare a package...I guess that's why it's working for us. -Mike btw, I really enjoyed...
59639
Perrin Harkins
perrin@...
Jul 2, 2004 6:15 pm
... I don't see any harm in adding it, if it helps some people. Could you add a little bit to the docs to explain your addition, and the caveat that it only...
59640
Stas Bekman
stas@...
Jul 2, 2004 6:16 pm
... startup.pl if it's loaded before perl sections or a simple <perl> section. ... Thanks :) ... No, no, it should croak on all errors. It's not an equivalent...
59641
Stas Bekman
stas@...
Jul 2, 2004 6:28 pm
... The only issue is that Apache::Reload on CPAN reached its end of life (at the least for the moment). It now lives inside mp2, where it has already evolved ...
59642
David Arnold
darnold@...
Jul 2, 2004 7:04 pm
All, I get so confused keeping track of everything. I've got some modules that I swear checked for syntax a few days ago. Here's one that starts: package...
59643
benoit
benoit@...
Jul 2, 2004 7:06 pm
... Where should I put this? I've tried adding it in my single <perl> section, or even in a stand-alone block at the beginning of my httpd.conf, but if I ...
59644
Stas Bekman
stas@...
Jul 2, 2004 7:15 pm
... Because you didn't load the right modules. Try again with: perl -wc -MApache2 -MApache::compat AuthAny.pm in general it's not possible to test code relying...
59645
David Arnold
darnold@...
Jul 2, 2004 9:04 pm
Stas, ... I got this: [darnold@ps-114a-2k Apache]$perl -wc -MApache2 -MApache::compat AuthAny.pm Bareword "Apache::server_root" not allowed while "strict subs"...
59646
Stas Bekman
stas@...
Jul 2, 2004 9:10 pm
... Yes, David, this is right for the majority of the API. Again, do not test your modperl code w/o running modperl, which you accomplish with help of...
59647
David Arnold
darnold@...
Jul 2, 2004 9:19 pm
Stas, ... accomplish ... I did a little searching and saw very little on Apache-Test. Is it a current CVS project? If so, I've never participated or downloaded...
59648
Perrin Harkins
perrin@...
Jul 2, 2004 10:00 pm
... Really? It's all over the mod_perl site. This would be a good place to start: http://perl.apache.org/docs/general/testing/testing.html ... It's on CPAN....