Re: [mp2] ModPerl-Registry/t/bad_scritps.t returns 403 not 500

2003-09-05 Thread Beau E. Cox
- Original Message - From: Stas Bekman [EMAIL PROTECTED] To: Beau E. Cox [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Thursday, September 04, 2003 9:09 PM Subject: Re: [mp2] ModPerl-Registry/t/bad_scritps.t returns 403 not 500 Thank you Beau for a complete bug report. a. ModPerl

Re: [mp2] ModPerl-Registry/t/bad_scritps.t returns 403 not 500

2003-09-05 Thread Beau E. Cox
Stas - Yep - ALL SET! Thanks a $1,000,000. Aloha = Beau; PS: I wonder whose anti-spam filter is going to junk this email? :) -- Reporting bugs: http://perl.apache.org/bugs/ Mail list info: http://perl.apache.org/maillist/modperl.html

[mp2] Failed to obtain the MPM name

2003-09-04 Thread Beau E. Cox
- the Changes file mentions some changes in this area, but I don't understand them enough to solve this problem. Likewise for the source of Build.pm. *NOTE* CVS source downloaded 7/12/2003 works fine (with same Apache configuration on same machine). Aloha = Beau; == please visit == http

Re: [mp2] Failed to obtain the MPM name

2003-09-04 Thread Beau E. Cox
- Original Message - From: Stas Bekman [EMAIL PROTECTED] To: Beau E. Cox [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Thursday, September 04, 2003 6:45 AM Subject: Re: [mp2] Failed to obtain the MPM name Beau E. Cox wrote: Hi - 1) Downloaded (via CVS) latest mod_perl source (9/4

[mp2] ModPerl-Registry/t/bad_scritps.t returns 403 not 500

2003-09-04 Thread Beau E. Cox
= Beau; == please visit == http://beaucox.com = main site http://howtos.beaucox.com = howtos http://PPM.beaucox.com = perl PPMs http://CPAN.beaucox.com = CPAN == thank you == -- Reporting bugs: http://perl.apache.org/bugs/ Mail list info: http://perl.apache.org/maillist/modperl.html

[mp2] Apache::DBI

2003-07-14 Thread Beau E. Cox
? Aloha = Beau;

Re: [mp2] Apache::DBI

2003-07-14 Thread Beau E. Cox
- Original Message - From: Haroon Rafique [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, July 14, 2003 3:23 AM Subject: Re: [mp2] Apache::DBI On Yesterday at 10:01pm, BEC=Beau E. Cox [EMAIL PROTECTED] wrote: BEC BECShould I use 'connect' in my startup.pl? BEC BEC Have

Re: Mod Image Magick

2003-06-17 Thread Beau E. Cox
, I use it on my web site, and use the pre- packaged I::M program and perl module that came with my Linux distribution (SuSE). Maybe someone out there knows what is going on (Randy K., are you around today?) Sorry - not much help... Aloha = Beau;

Re: is anybody using mp2 in production?

2003-06-09 Thread Beau E. Cox
are running SuSE 8.2 Linux. Aloha = Beau; By the way, have you ever tried to explain the idom knock on wood to someone for whom English is not their first language? I have been trying to explain it to my wife - from Japan - for ten years now without success :)

Re: PERL/java interface available?

2003-06-09 Thread Beau E. Cox
Charlie: Check out the 'Inline' modules on CPAN: http://search.cpan.org/author/INGY/Inline-0.44/Inline.pod You also may want to look at SWIG at: http://www.swig.org/ I have used Inline::C and SWIG for c and c++, but not for java; but they say they work... Aloha = Beau; PS: The 'Inline' modules

Re: install upgrade for mod_perl+apache 2.046 onto apache 2.044 question

2003-06-08 Thread Beau E. Cox
windows boxes. Aloha = Beau;

Re: USE_ENVIRON_ARRAY

2003-06-04 Thread Beau E. Cox
- Original Message - From: Stas Bekman [EMAIL PROTECTED] To: Beau E. Cox [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Tuesday, June 03, 2003 3:25 PM Subject: Re: USE_ENVIRON_ARRAY Beau E. Cox wrote: Hi - I'm working on an embedding project, and using mod_perl as a tutorial

USE_ENVIRON_ARRAY

2003-06-03 Thread Beau E. Cox
whether or not to pass the environment array to perl_... calls)? Aloha = Beau;

[mp2] UN-bug!

2003-05-31 Thread Beau E. Cox
Hi Stas and guys - As of Sat May 31 08:38:30 UTC 2003 1) I have the following installed and tested: Server Version: Apache/2.0.46 (Unix) mod_perl/1.99_10-dev (CVS) Perl/v5.8.0 mod_ssl/2.0.46 OpenSSL/0.9.7b 2) Everything is looking good! 3) GOOD JOB FOLKS... Aloha = Beau;

[mp2] Subroutine calls in handlers

2003-03-13 Thread beau
] Undefined subroutine MyApache::Redirect::process_ssl called at /srv/www/perl/MyApache/Redirect.pm line 36. I'm missing something kind of basic here, but the examples on the mp2 site show handlers with subroutines (Eagle book too). Aloha = Beau;

Re: [mp2] Subroutine calls in handlers

2003-03-13 Thread beau
a compile error - please ignore :) All working now... Aloha = Beau;

Re: [mp2] Documentation

2003-03-10 Thread beau
not a C guru. - nick -- Thanks, Nick... Who would of thought of looking at the mp1 - mp2 documentaion to find mp2 docs? It's a good start for me; and your right, starting with mp2 IS the hard way :) Aloha = Beau;

Re: [mp2] Documentation

2003-03-10 Thread beau
-uri-parsing' tutorial. Give me 1 week. Aloha = Beau;

Re: [mp2] Latest mod_perl funny test results

2003-03-08 Thread beau
On 8 Mar 2003 at 20:56, Stas Bekman wrote: Stas Bekman wrote: Beau E. Cox wrote: Hi - I just upgraded to Apache 2.0.44 (source) and mod_perl-1.99-09-dev (CVS source) on my SuSE 8.1 test server. All test scripts completed OK. I am omitting the details of my configuration

[mp2] changing http:// to https: in TransHandler

2003-03-08 Thread beau
=~ m{^http://bcbk}i) { $url =~ s/^http:/https:/i; $r-url ($url); } return Apache::DECLINED; } 1; Which is great, but there is *no* $r-url. I know there is a $r-uri, but how can I get to the whole ball of wax: from http://...? I can't find it in the docs. Aloha = Beau;

Re: [mp2] changing http:// to https: in TransHandler

2003-03-08 Thread beau
and informative reply! Back to mod_rewrite ;) I'll see if I can get thru the virtual host/mod_rewrite maze...and let you know. Thanks and Aloha = Beau;

Re: [mp2] changing http:// to https: in TransHandler

2003-03-08 Thread beau
to be wrong about this. I host from home on ADSL and thought I'd have to pay for more IP's if I wanted to secure a section of my site. J Nick Tonkin wrote: [...] Beau: [...] mod_rewrite can be complicated, sure, but I do think it's the way to go in this situation. You need

RE: [mp2] apache/mod_perl starup failure using cvs 09

2003-03-05 Thread Beau E. Cox
-Original Message- From: Stas Bekman [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 04, 2003 9:23 PM To: Beau E. Cox Cc: Modperl Subject: Re: [mp2] apache/mod_perl starup failure using cvs 09 [...] why does Mason needs $r at the server startup? There is no request object

RE: [mp2] apache/mod_perl starup failure using cvs 09

2003-03-05 Thread Beau E. Cox
Hi Stas - -Original Message- From: Stas Bekman [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 04, 2003 10:45 PM To: Beau E. Cox Cc: Modperl Subject: Re: [mp2] apache/mod_perl starup failure using cvs 09 Beau E. Cox wrote: Yea, Stas, I clearly see your reasoning. However

[mp2] Latest mod_perl funny test results

2003-03-04 Thread Beau E. Cox
header? Aloha = Beau;

RE: [mp2] Latest mod_perl funny test results

2003-03-04 Thread Beau E. Cox
Hi Stas - -Original Message- From: Stas Bekman [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 04, 2003 4:01 PM To: Beau E. Cox Cc: Modperl Subject: Re: [mp2] Latest mod_perl funny test results Beau E. Cox wrote: Hi - I just upgraded to Apache 2.0.44 (source) and mod_perl

[mp2] apache/mod_perl starup failure using cvs 09

2003-03-04 Thread Beau E. Cox
-8-- Start Bug Report 8-- 1. Problem Description: Sorry - is this mason's problem? Apache does not start using latest mod_perl2 (cvs) when using a mason startup script. Failure matrix: mod_perl version mason version using startup.pl using

RE: [mp2] apache/mod_perl starup failure using cvs 09

2003-03-04 Thread Beau E. Cox
Hi Stas - -Original Message- From: Stas Bekman [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 04, 2003 6:18 PM To: Beau E. Cox Cc: Modperl Subject: Re: [mp2] apache/mod_perl starup failure using cvs 09 Beau E. Cox wrote: -8-- Start Bug Report 8

RE: [ANNOUNCE] Apache::DBI 0.90_02

2003-01-11 Thread Beau E. Cox
WOW! I had heard moving A:DBI to 2 was going to be very difficult! I've been waiting... I'll try it this weekend... Thanks and Aloha = Beau; -Original Message- From: Ask Bjoern Hansen [mailto:[EMAIL PROTECTED]] Sent: Friday, January 10, 2003 5:30 PM To: [EMAIL PROTECTED] Subject

HTTP

2003-01-11 Thread Beau E. Cox
Authorization into a page served by Apache it works (of cource). I've read the RFP's again and again and I can't see what I'm missing. Can any HTTP experts help? Aloha = Beau. PS: Sorry if this seems OT, but it is in my mod_perl learning path!

RE: Apache::DBI

2003-01-02 Thread Beau E. Cox
Hi Paul - It is my understanding that Apache::DBI is not yet implemented for Apache2/mod_perl2. I had to comment out my references to it in the startup script and/or the configuration file. Take a look at: http://beaucox.com/mason/mason-with-apmp2-mini-HOWTO.htm for further info. Aloha = Beau

RE: Help! :) - Installation problem with mod_perl-1.99_07 and apache_1.3.27

2002-12-30 Thread Beau E. Cox
No No No - mod_perl-1.99 is really the pre-relase mod_perl 2. You MUST use Apache 2 with mod_perl 2! Aloha = Beau. -Original Message- From: Frank Laczko Jr. [mailto:[EMAIL PROTECTED]] Sent: Sunday, December 29, 2002 11:37 PM To: [EMAIL PROTECTED] Subject: Help! :) - Installation

RE: mod_perl php apache || !

2002-12-24 Thread Beau E. Cox
Hi - While converting a site to mod_perl/mason from php, I had varying degrees of the site using php and mod_perl with no problems. I think you would be safe. But remenber Perl Rules! and mod_perl rocks! :) Aloha = Beau. -Original Message- From: Joseph P. Crotty [mailto:[EMAIL

RE: Install Problem: make test: modules/src.t

2002-12-21 Thread Beau E. Cox
Hi - I had testing problems a few weeks ago... be sure you test as a 'normal' user, not 'root'. If you did the make under root, be sure to change user:group ownership of the entire mod_perl tree before logging in and testing. I'm _not_ an expert, but that's what happened to me :) Aloha = Beau

RE: Install Problem: make test: modules/src.t

2002-12-21 Thread Beau E. Cox
alone in -v mode? For mod_perl 2 you can say: t/TEST -v testname. Sorry I'm not much help... Aloha = Beau. -Original Message- From: Mark Hawkes [mailto:[EMAIL PROTECTED]] Sent: Saturday, December 21, 2002 2:19 PM To: [EMAIL PROTECTED] Subject: RE: Install Problem: make test: modules/src.t

RE: install apache:asp in windows

2002-12-20 Thread Beau E. Cox
Hi - mod_perl 2.0 only works with Apache 2. You should use mod_perl 1 (current) to go with an Apache 1 server. Aloha = Beau. -Original Message-From: Karthik [mailto:[EMAIL PROTECTED]]Sent: Friday, December 20, 2002 10:20 AMTo: [EMAIL PROTECTED]Subject: install apache:asp

RE: Shroud+ Perl obfuscator....

2002-12-20 Thread Beau E. Cox
Even thought I am new to the Open Source Community I agree with Randal Schwartz. I find the idea of creating AND sharing much more enriching than the way things are done in the MS world where I have spent the bulk of my career. Maybe we should come up with UnShroud+. Beau E. Cox -Original

RE: modperl 2.0 problems with Apache::Cookie and related modules.

2002-12-19 Thread Beau E. Cox
Hi - You may want to check out my experiences w/ap2-mp2 shown in: http://beaucox.com/mason/mason-with-apmp2-mini-HOWTO.htm It shows how I intalled these packages. Aloha = Beau. -Original Message- From: b. ash [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 19, 2002 10:40 AM

RE: mod_perl-2 configuration problem

2002-12-19 Thread Beau E. Cox
-mini-HOWTO.htm (ignore the 'mason' part if your not using it). 5) Check that the mod_perl.so in your apache tree is the same as the moduled in the mod_perl tree (/your-path-to-modperl-2-package/src/modules/perl/mod_perl.so). Aloha = Beau. -Original Message- From: Carl Holm [mailto

[mp2] make install quirk

2002-12-12 Thread Beau E. Cox
. Aloha = Beau.

[mp2]Kow do I find dovumention on...

2002-12-08 Thread Beau E. Cox
-status, $r-bytes_sent; ... I don't mean this question to be specifically about RequestRec, but rather am seeking to find out how to find the structure of Apache/mod_perl creatures in general. (Yes, I even can read c if that's were the documentation lies). Aloha = Beau.

[mp2]mason ROCKS under mp2

2002-12-07 Thread Beau E. Cox
, it ROCKS :) Aloha = Beau.

RE: [mp2] LogHandler configuration problems

2002-12-05 Thread Beau E. Cox
abount the same information that my logger gave... OK, I'll relax. The secret is to read and test more before crying wolf, Aloha = Beau. -Original Message- From: Stas Bekman [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 04, 2002 9:23 PM To: Beau E. Cox Cc: Modperl Subject: Re: [mp2

[mp2] doing PerlSetVar from a startup handler

2002-12-05 Thread Beau E. Cox
the 'require' for the handler in the conf file, CGI is NOT set. Question: how can I PerlSetVar from the perl code in the handler? I see: push @{ $Location{/}-{PerlSetVar} }, [ foo = 'bar' ]; in the mp1 docs - looks good - but where do I get the %Location hash? Can't seem to find that. Aloha = Beau.

RE: [mp2] doing PerlSetVar from a startup handler

2002-12-05 Thread Beau E. Cox
to 'CGI' uses CGI instead of Apache::Request. I don't know how the magic of the PerlSetVar = args_method when mason is configured w/o a startup script, but the point is mute, as it is up and running. I will ponder further after my deadlines are met ;) Aloha = Beau. PS: why do I always get two duplicate

[mp2]Cookies?

2002-12-05 Thread Beau E. Cox
, sorry. Aloha = Beau. PS: Is it time for a separate mp2 list? It sure would help in searching the archives if you are specifically looking for an mp2 issue.

RE: [mp2]Cookies?

2002-12-05 Thread Beau E. Cox
blues Aloha = Beau. -Original Message- From: Randy Kobes [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 05, 2002 2:40 PM To: Beau E. Cox Cc: Modperl Subject: Re: [mp2]Cookies? On Thu, 5 Dec 2002, Beau E. Cox wrote: Hi - I can't get cookies to work on AP/MP 2. Even in compat

RE: All tests fail with Apache/2.0.43 (Unix) mod_perl/1.99_07-dev

2002-12-05 Thread Beau E. Cox
you make install. Good luck. Aloha = Beau. -Original Message- From: Stephen Clouse [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 05, 2002 3:33 PM To: Richard Curtis Cc: [EMAIL PROTECTED] Subject: Re: All tests fail with Apache/2.0.43 (Unix) mod_perl/1.99_07-dev -BEGIN PGP

RE: [mp2]Cookies?

2002-12-05 Thread Beau E. Cox
Hi Stas - OK! Will do. Aloha = Beau. -Original Message- From: Stas Bekman [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 05, 2002 4:07 PM To: Beau E. Cox Cc: Randy Kobes; Modperl Subject: Re: [mp2]Cookies? Beau E. Cox wrote: Hi Randy - Sorry, I should have been more explicit

[mp2] Documentation/LogHandler question

2002-12-04 Thread Beau E. Cox
:) Aloha = Beau. PS: Hey Mr. 100%, mod_perl 2.0 rocks!

[mp2] LogHandler configuration problems

2002-12-04 Thread Beau E. Cox
Well Stas, you asked for it... :) -8-- Start Bug Report 8-- 1. Problem Description: LogHandler configuration problem. In the tests below I start out with the LogHandler configuration in the documentation and keep 'trimming' it down until it works.

[mp2]make test problems

2002-12-03 Thread Beau E. Cox
NOTE: My name servers have been giving me fits today, so I am resending this problem report; If you have already received it, please forgive me = Beau. -8-- Start Bug Report 8-- 1. Problem Description: A. Apache 2.0.43: ./configure --enable-layout=SuSE

RE: [mp2.0]make test problems

2002-12-03 Thread Beau E. Cox
an untar...they usually come out the other end root:root. It's some of your magic, isn't it Stas? Aloha = Beau. PS: I can't give you the ls you wanted right now, I am in the middle of reinstalling apache w/o my SuSE layout... -Original Message- From: Stas Bekman [mailto:[EMAIL PROTECTED

[mp2] the make test problem saga continues...

2002-12-03 Thread Beau E. Cox
-- - apr/perlio.t 11 11 100.00% 1-11 ..done I. I wish I knew more (hopefully someday...) but I can't see anything else to try. Please advise, Aloha = Beau. 2. Used Components and their Configuration: *** using

RE: [mp2] the make test problem saga continues...

2002-12-03 Thread Beau E. Cox
Sir: You are correct; after changing owner:group settings to my normal user, apr/perlio worked fine under that user! Const.pm apache/subprocess fail in the same way as under root. progress...ain't it great! :) Aloha = Beau. PS: boy, you are brave; over the years I've learned not to say: I'm

RE: [mp2] the make test problem saga continues...

2002-12-03 Thread Beau E. Cox
Ok Mr. 100%... ;-) I'll get cvs again. Aloha = Beau. -Original Message- From: Stas Bekman [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 03, 2002 5:33 AM To: Beau E. Cox Cc: Modperl Subject: Re: [mp2] the make test problem saga continues... C. same Apache/Const.pm not found

RE: [mp2] the make test problem saga continues...

2002-12-03 Thread Beau E. Cox
THIS THREAD IS OFFICIALLY RETIRED Yes, everthing works (although I still miss being King). Thank you for your time and effort. I hope others will benefit from what we went through. Aloha = Beau. -Original Message- From: Stas Bekman [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December

Install problem...

2002-12-02 Thread Beau E. Cox
--- apache/subprocess.t44 100.00% 1-4 I haven't got a clue. This is my sixth reRTFM/reinstall/retest. Could someone give me a push as to what to try next? Aloha = Beau.

RE: Install problem...

2002-12-02 Thread Beau E. Cox
Thanks Stas - Please give me about an hour...I am in the middle of putting everthing back together again :) Will report back to you (following the standards) then. Aloha = Beau. PS: This is sort of fun! -Original Message- From: Stas Bekman [mailto:[EMAIL PROTECTED]] Sent: Monday

[mp2.0]make test problems

2002-12-02 Thread Beau E. Cox
-8-- Start Bug Report 8-- 1. Problem Description: MP make test fails (no error log generated) A. Apache/Const.pm not found - snip of console output: [START] *** setting ulimit to allow core files ulimit -c unlimited; t/TEST -clean *** setting

[mp2.0]make test problems

2002-12-02 Thread Beau E. Cox
root root 743 Sep 5 07:07 Const.pm xs/APR/Const: -rw-r--r--1 beau mysql 160 Apr 11 2001 Const.pm xs/Apache/Const: -rw-r--r--1 beau mysql 324 Aug 28 16:28 Const.pm xs/ModPerl/Const: -rw-r--r--1 beau mysql 743 Sep 5 07:07

RE: segmentation fault using a startup file

2002-11-25 Thread Beau E. Cox
Yeah, Randy, I second the motion. We know that DBI 1.28 does _NOT_ work! Aloha = Beau. -Original Message- From: Randy Kobes [mailto:[EMAIL PROTECTED]] Sent: Monday, November 25, 2002 7:34 AM To: Jan Theofel Cc: mod_perl mailinglist Subject: Re: segmentation fault using a startup file

RE: Apache::DBI seg fault

2002-11-21 Thread Beau E. Cox
Randy - Thank you, I owe you lunch. I thought I checked all relevant module versions, but your msg spurred me to check again: DBI 1.28 was on production while DBI 1.30 was on test! 1.30 WORKS! 1.28 DOESN'T WORK. All is well - I am one happy camper ;) Aloha = Beau. -Original Message

Newbie: how to use PerlSetVar

2002-11-20 Thread Beau E. Cox
variables in a handler (instead of httpd.conf)? Aloha = Beau.

RE: Newbie: how to use PerlSetVar

2002-11-20 Thread Beau E. Cox
Hi - and thank you - I am RTFM, but when you get into something new (and vast) it takes a while for the _gestalt_ to happen. You have given me the kick start I needed. I'll be silent for a time coding away ;) Aloha = Beau. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL

Apache::DBI seg fault

2002-11-20 Thread Beau E. Cox
to track this problem down. Could someone please push me in the right direction? Aloha = Beau.

RE: [Win32] ActivePerl-5.8 beta released

2002-11-08 Thread Beau E. Cox
Hi - Just wondering about DBI modules in 5.8. In both Randy's posted ppm packages list and via 5.8's ppm, I can't find: DBI (plain 'ole) DBD-ODBC DBD-Mysql I know this is beta, but are DBI modulrs such as these forthcoming? Aloha = Beau. -Original Message- From: Randy Kobes