... 'make install' is governed by MakeMaker. For example if for some reason your files in blib/ are older than the previously installed files, 'make install'...
64169
John Callender
jbc@...
Apr 5, 2005 12:38 am
In moving some web sites from a server running Red Hat Linux release 7.3 (Valhalla) to one running Fedora Core release 1 (Yarrow), I'm finding that attempts to...
64170
Stas Bekman
stas@...
Apr 5, 2005 2:39 am
... Fred, please follow the instructions at: http://perl.apache.org/docs/2.0/user/help/help.html#_C_make_test___Failures ... Are you sure it's the right file?...
64171
Stas Bekman
stas@...
Apr 5, 2005 2:56 am
... [...] ... [...] ... [...] ... I'd suggest to cleanup your perl's lib tree first, nuking all paths with 5.8.2, 5.8.1 and 5.8.0 in it. May be you get some...
64172
Tom Schindl
tomAtLinux@...
Apr 5, 2005 6:53 am
... Hash: SHA1 Hi, I won't do that because when develping code on such an old code base like 1.99.09 many things have been corrected/changed beside security ...
64173
Torsten Foertsch
torsten.foertsch@...
Apr 5, 2005 7:02 am
... If I understood you properly you are redirecting the browser from a HTTP request to HTTPS. This involves browser interaction and is not an internal...
64174
Torsten Foertsch
torsten.foertsch@...
Apr 5, 2005 7:33 am
... Maybe some background information on what the particular test does. Tests 1 and 2 check whether the DEFLATE input filter and the INCLUDES output filter are...
64175
John Callender
jbc@...
Apr 5, 2005 8:40 am
... That appears to have solved my problem. I needed to install DBI and DBD::mysql from source after removing the 5.8.0, 5.8.1, and 5.8.2 paths from the perl...
64176
Dintelmann, Peter
Peter.Dintelmann@...
Apr 5, 2005 10:38 am
... ok; I didn't think about that... So what is the most efficient way to determine the "standard" bucket types like EOS/EOC/FLUSH? How is is_eos() doing it?...
64177
Dintelmann, Peter
Peter.Dintelmann@...
Apr 5, 2005 11:55 am
The log phase can be invoked in a protocol handler using the run_log_transaction() method from Apache::HookRun. use Apache::Connection; use Apache::Const...
64178
Stas Bekman
stas@...
Apr 5, 2005 3:43 pm
... Excellent :) ... If you don't use threads and you build your own perl, you should build it with threads disabled. You will get a faster and smaller perl. ...
64179
Barry Hoggard
barry@...
Apr 5, 2005 3:48 pm
... Yes, that is correct. I was assuming I should put something into my session, but I wasn't sure where in the handling phase to do it. I am using...
64180
Stas Bekman
stas@...
Apr 5, 2005 3:53 pm
... with is_foo methods: http://perl.apache.org/docs/2.0/api/APR/Bucket.html though at the moment we expose just two of them. Which ones do you lack? ... ...
64181
Stas Bekman
stas@...
Apr 5, 2005 3:58 pm
... This should do the trick: Index: xs/Apache/RequestUtil/Apache__RequestUtil.h ... +++ xs/Apache/RequestUtil/Apache__RequestUtil.h (working copy) @@ -79,6...
64182
Tom Caldwell
tom.caldwell@...
Apr 5, 2005 4:27 pm
Thanks, Tom, for the worldly advice. But, here is my situation. I am a single individual supporting 8+ Oracle research databases at Vanderbilt University...
64183
Leo
leo-mod-perl@...
Apr 5, 2005 6:21 pm
Hi I updated my mod_perl 2.0 to the latest svn version. I had screwed with my perl intallation a bit beforehand as well... I reinstalled mod_perl 2.0 doing: ...
64184
Tom Schindl
tomAtLinux@...
Apr 5, 2005 8:52 pm
Hi, as you should have noticed all modules live now in the Apache2::-Namespace so there is no need any more for the Apache2.pm. The trunks have been merged on...
64185
Chris
chrisp3623@...
Apr 5, 2005 10:31 pm
Greetings, We have developed a web application using mod_perl and MySQL. We chose the light Apache + mod_perl Apache + MySQL method. What we would like to be...
64186
Goehring, Chuck, RCI ...
cgoehring@...
Apr 5, 2005 10:58 pm
The MySQL folks say they do clustering. There are whitepapers at this link. http://www.mysql.com/products/cluster/ MySQL Cluster MySQL Cluster combines the...
64187
Perrin Harkins
perrin@...
Apr 5, 2005 11:13 pm
On Tue, 2005-04-05 at 15:58 -0700, Goehring, Chuck, RCI - San Diego ... It's a bit different from just clustering an existing MySQL database. It involves using...
64188
jonathan vanasco
jvanasco@...
Apr 5, 2005 11:45 pm
I'll second Zawodny's book. It's a quick read. http://www.bookpool.com/sm/0596003064 OT, A decent backup scheme mentioned in it is to run a slave on a ...
64189
jonathan vanasco
jvanasco@...
Apr 5, 2005 11:52 pm
I can't seem to get that working, best as I try. Does anyone have other suggestions? My main problem right now, is that if I upload 'nothing39;, i get an error...
64190
David J Radunz
david.radunz@...
Apr 6, 2005 1:10 am
Heya All, I have an issue at the moment where if there is an error/warning in my PerlRun script/module then the error/warning is printed as well as the entire...
64191
Stas Bekman
stas@...
Apr 6, 2005 2:07 am
... David, why not fix errors and warnings and have nothing logged at all? Why do you set: $SIG{__DIE__} = \&Carp::confess; $SIG{__WARN__} = \&Carp::cluck; ...
64192
David J Radunz
david.radunz@...
Apr 6, 2005 2:23 am
Sounds great - yet obvious. I would have to do about 2 years worth of work to fix all of the bugs. I didn't create them either, I fix them in my own code - but...
64193
Dzuy Nguyen
dzuy@...
Apr 6, 2005 2:36 am
I put the servers behind an LVS load balancer. LVS is an L4 load balancer, so all servers behind it must have identical functions and content. I use...
64194
Stas Bekman
stas@...
Apr 6, 2005 4:49 am
... If that's the case, why don't you adjust your %SIG wrappers to truncate the error length? It's relatively easy: use Carp qw(confess cluck); $SIG{__DIE__}...
64195
Stas Bekman
stas@...
Apr 6, 2005 5:01 am
... Sorry, it should have been: use constant TRUNCATE => 40; use Carp (); $SIG{__DIE__} = sub { die substr Carp::longmess(@_), 0, TRUNCATE }; $SIG{__WARN__}...
64196
David J Radunz
david.radunz@...
Apr 6, 2005 5:04 am
Well, all of these scripts run under PerlRun - so I either have to make that change in every one of them, and every module they load. Like, if I set the...
64197
Stas Bekman
stas@...
Apr 6, 2005 5:23 am
... Why would any module mungle with %SIG? That's a very bad idea. It should be set once at the startup by the user, normally for debug purposes and never...