Re: Threaded perl messages

2005-07-19 Thread Gunnar Koppel
Tom Schindl kirjutas: I'd suggest to install your own perl into e.g. /opt/perl-5.8.7 leaving your old perl untouched, compile your own apache(not a must) and I think there is better way to to stay with Debian packages and have newer perl. 5.8.7 is in testing (etch) and unstable (sid), so you

perl.apache.org down?

2005-07-19 Thread angie ahl
Not sure who to report to so posting here sorry. I can't connect to http://perl.apache.org can get through to the main apache site fine though. Angie

Re: perl.apache.org down?

2005-07-19 Thread Geoffrey Young
angie ahl wrote: Not sure who to report to so posting here sorry. I can't connect to http://perl.apache.org can get through to the main apache site fine though. it's being worked on. --Geoff

Re: perl.apache.org down?

2005-07-19 Thread angie ahl
Who should we mail for the record. Or is it best mentioning things here to save the poor sys admin from being flooded ;) Angie On 7/19/05, Geoffrey Young [EMAIL PROTECTED] wrote: angie ahl wrote: Not sure who to report to so posting here sorry. I can't connect to

Re: perl.apache.org down?

2005-07-19 Thread Randy Kobes
On Tue, 19 Jul 2005, Geoffrey Young wrote: angie ahl wrote: Not sure who to report to so posting here sorry. I can't connect to http://perl.apache.org can get through to the main apache site fine though. it's being worked on. In the meantime, we have a mirror site at

Re: perl.apache.org down?

2005-07-19 Thread Geoffrey Young
angie ahl wrote: Who should we mail for the record. Or is it best mentioning things here to save the poor sys admin from being flooded ;) all of the *.apache.org sites and services are monitored for outages and whatnot by the asf infrastructure team. folks are even on call. so, in general,

Re: $r-notes and logging

2005-07-19 Thread Philippe M. Chiasson
Anthony Gardner wrote: Sure, I'd like to log particular error msgs and I saw in the Apache manual mod_log_config. Amongst the configurations are things like %h - for host, %u - for user and things like that. There's an option %{foo}n - for notes. I was wondering if that meant I could

[mp2] [RequestUtil] [bug?] Apache2::RequestUtil-dir_config does not seem to work as stated in list context.

2005-07-19 Thread Bengt-Arne Fjellner
-8-- Start Bug Report 8-- 1. Problem Description: Apache2::RequestUtil-dir_config does not seem to work as stated in list context. PerlAddVar foo one two three @values = $r-dir_config($key); # only gives one value this script used as normal registry

Re: [mp2] [RequestUtil] [bug?] Apache2::RequestUtil-dir_config does not seem to work as stated in list context.

2005-07-19 Thread Geoffrey Young
Bengt-Arne Fjellner wrote: -8-- Start Bug Report 8-- 1. Problem Description: Apache2::RequestUtil-dir_config does not seem to work as stated in list context. PerlAddVar foo one two three @values = $r-dir_config($key); # only gives one value

Re: [mp2] [RequestUtil] [bug?] Apache2::RequestUtil-dir_config does not seem to work as stated in list context.

2005-07-19 Thread Bengt-Arne Fjellner
Geoffrey Young skrev: Bengt-Arne Fjellner wrote: -8-- Start Bug Report 8-- 1. Problem Description: Apache2::RequestUtil-dir_config does not seem to work as stated in list context. PerlAddVar foo one two three @values = $r-dir_config($key); # only

Re: [mp2] [RequestUtil] [bug?] Apache2::RequestUtil-dir_config does not seem to work as stated in list context.

2005-07-19 Thread Geoffrey Young
Apache2::RequestUtil-dir_config does not seem to work as stated in list context. PerlAddVar foo one two three @values = $r-dir_config($key); # only gives one value ugh, sorry I didn't see this the first time. the syntax is @values = $r-dir_config-get($key); again, if you saw it without

Re: [mp2] [RequestUtil] [bug?] Apache2::RequestUtil-dir_config does not seem to work as stated in list context.

2005-07-19 Thread Bengt-Arne Fjellner
Geoffrey Young skrev: Apache2::RequestUtil-dir_config does not seem to work as stated in list context. PerlAddVar foo one two three @values = $r-dir_config($key); # only gives one value ugh, sorry I didn't see this the first time. the syntax is @values = $r-dir_config-get($key);

Re: [mp2] [RequestUtil] [bug?] Apache2::RequestUtil-dir_config does not seem to work as stated in list context.

2005-07-19 Thread Geoffrey Young
http://perl.apache.org/docs/2.0/api/Apache2/RequestUtil.html#C_dir_config_ and then ca 33 lines down. ok, thanks. also http://perl.apache.org/docs/2.0/user/config/config.html#C_PerlAddVar_ http://perl.apache.org/docs/2.0/user/config/config.html#C_PerlSetVar_ has only META: to be written

Re: [mp2] [RequestUtil] [bug?] Apache2::RequestUtil-dir_config does not seem to work as stated in list context.

2005-07-19 Thread Bengt-Arne Fjellner
Geoffrey Young skrev: http://perl.apache.org/docs/2.0/api/Apache2/RequestUtil.html#C_dir_config_ and then ca 33 lines down. ok, thanks. also http://perl.apache.org/docs/2.0/user/config/config.html#C_PerlAddVar_ http://perl.apache.org/docs/2.0/user/config/config.html#C_PerlSetVar_ has

Strange error in log when trying to implement PerlTypeHandler

2005-07-19 Thread Michele Gherlone
Hi all! I was trying to bypass mod_mime for certain mime type, and I wrote this small handler: package Apache::MIMEMagic; $Apache::MIMEMagic::VERSION='0.10'; use Apache2::Const -compile = qw(OK DECLINED); use File::MMagic; use strict; sub handler { my

RE: RE: Apache config

2005-07-19 Thread Jacob Jarick
Perrin Harkins wrote: Tom Schindl wrote: Isn't he talking about mp2 But alas modperl 1.x no such luck - Perrin both, though modperl two at least has straight forward INSTALL file which tells u the lines to add. Ive read all 3 of those documents several times and I have

[mp2] libapreq2 error

2005-07-19 Thread Garrison Hoffman
When trying to use Apache2::Cookie I get: /usr/sbin/apache2: symbol lookup error: /usr/lib/perl5/site_perl/5.8.6/i686-linux/auto/APR/Request/Apache2/Apache2.so: undefined symbol: apreq_handle_apache2 Is this a problem with libapreq2-2.05-dev or with my mod_perl configuration? -gh --

svn commit: r219663 - /perl/modperl/trunk/lib/Apache2/Build.pm

2005-07-19 Thread geoff
Author: geoff Date: Tue Jul 19 05:18:03 2005 New Revision: 219663 URL: http://svn.apache.org/viewcvs?rev=219663view=rev Log: fix regex to match recent APR versions. thanks to joe orton Modified: perl/modperl/trunk/lib/Apache2/Build.pm Modified: perl/modperl/trunk/lib/Apache2/Build.pm URL:

svn commit: r219664 - /perl/modperl/trunk/xs/APR/Base64/APR__Base64.h

2005-07-19 Thread geoff
Author: geoff Date: Tue Jul 19 05:22:13 2005 New Revision: 219664 URL: http://svn.apache.org/viewcvs?rev=219664view=rev Log: various warning fixes for gcc 4.x thanks again to joe orton Modified: perl/modperl/trunk/xs/APR/Base64/APR__Base64.h Modified:

svn commit: r219840 - /perl/modperl/trunk/t/apache/content_length_header.t

2005-07-19 Thread pgollucci
Author: pgollucci Date: Tue Jul 19 22:20:22 2005 New Revision: 219840 URL: http://svn.apache.org/viewcvs?rev=219840view=rev Log: Stop skipping this test 2.1.x now matches 2.0.x in its handling of C-L Modified: perl/modperl/trunk/t/apache/content_length_header.t Modified: