Just for the archives, I'm using mp2 (usually fairly recent CVS pulls) in production on a number of sites I'm hosting on a NetBSD server. These include my...
54695
Matthew Hodgson
matthew@...
Oct 1, 2003 6:47 pm
Hi all, I just upgraded from Apache 1.27/mod_perl 1.27 to Apache 1.28/mod_perl 1.28 and am noticing some weird behaviour on Apache::Registry scripts - ...
54696
Geoffrey Young
geoff@...
Oct 1, 2003 7:09 pm
... it's apache that is doing that stat call, and it's doing it because your URL has extra path information in it, and that extra path information happens to ...
54697
Dan McCormick
dan@...
Oct 1, 2003 8:08 pm
Hi, I have an Apache 1.3.27/modperl 1.27 site using HTML::Mason 1.20 with MasonX::Request::WithApacheSession 0.23 on a Redhat 7.3 system. The site gets about...
54698
Perrin Harkins
perrin@...
Oct 1, 2003 8:17 pm
... I suggest you switch to the MySQL storage, and use the NullLocker. MySQL updates are atomic, even without the extra locking that Apache::Session adds. The...
54699
Javier Alvarado
javiera@...
Oct 1, 2003 8:33 pm
I don't know for sure what may be causing the lockups, but I can think of two things to try: 1) Use Transaction => 1 when tieing your session. 2) Make sure the...
54700
Matisse Enzer
matisse@...
Oct 1, 2003 8:34 pm
... I'm sticking a reference to the session hash in the Apache request object: $r->pnotes($auth_name => \%session ); This is under mod_perl 2 I'm doing this in...
54701
Praveen Ray
praveen.ray@...
Oct 1, 2003 8:57 pm
Good Question. Does $r get freed after every request? In any case, best is to install a PerlCleanupHandler and set untie %$session in it....
54702
Perrin Harkins
perrin@...
Oct 1, 2003 8:59 pm
... Yes. That's a good approach to caching the session for the length of a request. - Perrin...
54703
Haroon Rafique
haroon.rafique@...
Oct 1, 2003 9:06 pm
Hi,
Find attached (and inline) a patch for smoother running of "make test" when running as a non-privileged user. This issue came to light while
running...
54704
Stas Bekman
stas@...
Oct 1, 2003 9:43 pm
... certainly, but does it break anything? [...] ... This is not a portable change. If you have a particular problem with regards to temp dir it needs to be...
54705
Haroon Rafique
haroon.rafique@...
Oct 1, 2003 10:42 pm
On Today at 2:42pm, SB=>Stas Bekman <stas@...> wrote: SB> > Comments are welcome. And we really should have a newline at the end of SB> >...
54706
Dave Rolsky
autarch@...
Oct 1, 2003 10:56 pm
... With MasonX::Request::WithApacheSession, this should happen automatically, since the session is stored in the request object, and the request object only...
54707
Stas Bekman
stas@...
Oct 1, 2003 11:13 pm
... Sure, please find all the files that miss the end lines and post a patch fixing them, which will gladly apply and try to remember to keeping them in place...
54708
Perrin Harkins
perrin@...
Oct 1, 2003 11:14 pm
... It would still be possible to screw this up if someone copied it into a global or made a closure, intentionally or not. That's what I would look for. -...
54709
Matisse Enzer
matisse@...
Oct 1, 2003 11:44 pm
my $uri = APR::URI->parse; I want to find out what the scheme (http, https) was for the current request. I also want to find out (and maybe set) the path_info ...
This distribution has been tested as part of the cpan-testers effort to test as many new uploads to CPAN as possible. See http://testers.cpan.org/ Please cc...
54712
Haroon Rafique
haroon.rafique@...
Oct 2, 2003 3:00 am
On Today at 4:12pm, SB=>Stas Bekman <stas@...> wrote:
SB> SB> Sure, please find all the files that miss the end lines and post a
SB> patch fixing...
54713
Stas Bekman
stas@...
Oct 2, 2003 6:33 am
... You get to break the 1.99_11-dev ice ;) Thanks, committed (with some more XXX noise, so we get this to polish later) ... I think you will want it in a...
54714
perl@...
Oct 2, 2003 6:39 am
Can I do something like this? from $sth = getVUser($dbh, $u, $d); return $sth->rows(); to return (getVUser($dbh,$u,$d))->rows(); a move from java->perl ;) ...
54715
Stas Bekman
stas@...
Oct 2, 2003 6:44 am
... Please don't cross-post irrelevant to mod_perl questions in the future. Thank you. __________________________________________________________________ Stas...
54716
Pringle, Chris (HP-PSG)
chris.pringle@...
Oct 2, 2003 12:36 pm
I'm currently working on a project to transform web content. It's basically a proxy server that has some Mod_Perl filters loaded to perform the...
54717
Matthew Westcott
matthew@...
Oct 2, 2003 12:48 pm
I'm using a PerlResponseHandler to control access to selected directories of a site, and I've encountered a similar problem to that described in ...
54718
Pringle, Chris (HP-PSG)
chris.pringle@...
Oct 2, 2003 1:03 pm
Hello, Apache has been configured as a proxy server. Here are the directives from my Apache config file: LoadModule perl_module modules/mod_perl.so PerlModule...
54719
Geoffrey Young
geoff@...
Oct 2, 2003 1:15 pm
... with SetHandler there are no other handlers to call - it's the one you choose (perl-script in the below case) or default-handler, that's it. ... yup. both...
54720
Przemyslaw Jaroszewski
przemek@...
Oct 2, 2003 1:41 pm
Hi, On Debian linux, fter apt-get upgrade which fetched 1.27-7 of libapache-mod-perl, the Apache server does not start anymore (just gets Segmentation fault)....
54721
Ged Haywood
ged@...
Oct 2, 2003 1:56 pm
Hi there, ... I have no experience with Debian. Perl and mod_perl must be compiled with the same compiler. Do you know if that is the case? It might be ...
54722
Damyan Ivanov
divanov@...
Oct 2, 2003 2:20 pm
... See http://bugs.debian.org/apache-perl Basically apache-perl must be recompiled against perl 5.8.1 I guess an updated apache-perl package will appear soon....
54723
Matthew Westcott
matthew@...
Oct 2, 2003 2:34 pm
... Many thanks - a PerlFixupHandler has done the job nicely. The fixup handler makes the decision, turning on a custom PerlResponseHandler if so. For the...