Repost: usage of die inside a mod_perl Apache handler shows not the expected behavior

2001-11-26 Thread Silvio Wanka
Hi, I repost this, because I got no respond: I use the following configuration: LocationMatch /(xx|yy) PerlHandlerApache::MyPkg SetHandler perl-script /LocationMatch and the handler is defined in this way: package Apache::MyPkg require 5.005; require

Re: Repost: usage of die inside a mod_perl Apache handler shows notthe expected behavior

2001-11-26 Thread Matt Sergeant
On Mon, 26 Nov 2001, Silvio Wanka wrote: Hi, I repost this, because I got no respond: I use the following configuration: LocationMatch /(xx|yy) PerlHandlerApache::MyPkg SetHandler perl-script /LocationMatch and the handler is defined in this way: package

Re: Repost: usage of die inside a mod_perl Apache handler shows notthe expected behavior

2001-11-26 Thread Silvio Wanka
Matt Sergeant wrote: On Mon, 26 Nov 2001, Silvio Wanka wrote: Hi, I repost this, because I got no respond: I use the following configuration: LocationMatch /(xx|yy) PerlHandlerApache::MyPkg SetHandler perl-script /LocationMatch and the handler is

Re: [modperl-site design challenge] Thomas Klausner (domm)

2001-11-26 Thread Jean-Michel Hiver
On Mon, Nov 26, 2001 at 01:36:07AM +0100, Robin Berjon wrote: * The first page (Home) successfully validates at w3.org (HTML and CSS). That's very good. Do the others validate as well (or at least, do you see any reason why they wouldn't ?) ? On some of the deeper pages, Pod::POM

RE: mod perl fails test on my Solaris 2.8 .. ?

2001-11-26 Thread Greg_Cope
-Original Message- From: Ged Haywood [mailto:[EMAIL PROTECTED]] Have you checked the mod_perl list archive on this one? Whops, looked in the Guide, but forgot about the archives. I've found the answer in:

array's first element is empty

2001-11-26 Thread Viljo Marrandi
Hello, Not sure if this is mod_perl related, but i hope someone can help me anyway. When i do DBI queries from mod_perl handler and put all returned results in array then array's first element is empty, I wonder why? I don't like to shift off first element every time i return the result. Has

RE: Apache::Registry HTTP HEAD feature fix ;-)

2001-11-26 Thread Geoffrey Young
-Original Message- From: Jean-Michel Hiver [mailto:[EMAIL PROTECTED]] Sent: Sunday, November 25, 2001 7:43 AM To: [EMAIL PROTECTED] Subject: Apache::Registry HTTP HEAD feature fix ;-) Hi guys, As promised I have been producing a fix for Apache::Registry. The module is

Re: Apache::Registry HTTP HEAD feature fix ;-)

2001-11-26 Thread Jean-Michel Hiver
well, you should be subclassing Apache::RegistryNG instead of Apache::Registry - then your method calls would work :) Sorry, Although I'm good at OO-Perl and CGI programming, I'm really quite new to mod_perl thus I really don't know what the fuck I'm doing :-) What is the difference between

RE: Apache::Registry HTTP HEAD feature fix ;-)

2001-11-26 Thread Geoffrey Young
-Original Message- From: Jean-Michel Hiver [mailto:[EMAIL PROTECTED]] Sent: Monday, November 26, 2001 9:18 AM To: [EMAIL PROTECTED] Subject: Re: Apache::Registry HTTP HEAD feature fix ;-) well, you should be subclassing Apache::RegistryNG instead of Apache::Registry - then

Re: Apache::Registry HTTP HEAD feature fix ;-)

2001-11-26 Thread Jean-Michel Hiver
well, I just gave you a patch that worked :) basically, it only provides a solution for mod_cgi compatible scripts, but if you're using the mod_perl API then it is up to you to check $r-header_only and take appropriate action... True, however your patch also means that it's necessary to

Re: [modperl-site design challenge] Thomas Klausner (domm)

2001-11-26 Thread John Saylor
Hi ( 01.11.25 22:37 +0100 ) Thomas Klausner: You can look at my idea of the the new modperl-site design here: http://domm.zsi.at/modperl-site-domm/ I like it. The main part of it is now just an elaboration of the contents, I imagine this will be a changing teaser of some sort. * While the

Re: mod_perl segfaulting (Redhat 7.2, DSO, Apache 1.3.20)

2001-11-26 Thread Matthew H. Gerlach
I noticed you list XML::Simple. It is a favorite module of mine, but it uses XML::Parser which uses the expat XML parser. It is seems that mod_perl has problems with XML::Parser. This problem is supposed to be fixed in Apache 1.3.22, but I still had problems with strange segfaults and munched

Re: [modperl-site design challenge]

2001-11-26 Thread Bill Moseley
At 11:14 AM 11/26/01 -0500, John Saylor wrote: * While the design might not be to cool from the designers point of view, I like it because it is simple, doesn't use HTML-tables, is small and fast (/very/ little HTML-overhead) and accessible to disabled people. But that *is* cool. I think it's

Re: [modperl-site design challenge]

2001-11-26 Thread tom poe
On Monday 26 November 2001 10:07, Bill Moseley wrote: ---snip--- Does it need to render well in old browsers? (e.g. netscape 4.08) There's a lot of old browsers out there, but maybe anyone looking at mod_perl would be a bit more up to date... Bill Moseley mailto:[EMAIL PROTECTED] Hi:

Re: mod_perl segfaulting (Redhat 7.2, DSO, Apache 1.3.20)

2001-11-26 Thread John Chia
Hi. On 24 November 2001 12:35 (+0800), Stas Bekman wrote: Check this out: http://perl.apache.org/guide/install.html#When_DSO_can_be_Used Nope. Still segfaulting. Same place. yes, the output of perl -V, the args used to build mod_perl (grab the src.rpm, rpm -i and look at the spec file.

ANNOUNCEMENT: HTML::Template::JIT 0.02

2001-11-26 Thread Sam Tregar
HTML::Template::JIT - a just-in-time compiler for HTML::Template CHANGES - Added support for loop_context_vars. - Added support for global_vars. - Fixed bug in loop param handling that made loop variables case-sensitive. DESCRIPTION This module provides a just-in-time compiler for

Re: receiving XML by POST

2001-11-26 Thread Joshua Chamas
Maarten Stolte wrote: Hello, i'm trying to figure out how to receive an xml message/file/stream(?) using POST, and how to be able to then send that to somewhere else (DBI). We're using MASON, don't know if that is information needed in this, but i saw something about MASON picking up

Re: receiving XML by POST

2001-11-26 Thread Tom Servo
On Mon, 26 Nov 2001, Joshua Chamas wrote: Maarten Stolte wrote: Hello, i'm trying to figure out how to receive an xml message/file/stream(?) using POST, and how to be able to then send that to somewhere else (DBI). We're using MASON, don't know if that is information needed in

Re: array's first element is empty

2001-11-26 Thread Joshua Chamas
Viljo Marrandi wrote: Hello, Not sure if this is mod_perl related, but i hope someone can help me anyway. When i do DBI queries from mod_perl handler and put all returned results in array then array's first element is empty, I wonder why? I don't like to shift off first element every

Re: array's first element is empty

2001-11-26 Thread Issac Goldstand
I don't think this is OT. I have had a similar error in which SELECT statements return fine under mod_cgi, but mysteriously get an extra null field underl mod_perl with Apache::DBI... I don't know what causes it, nor have I looked into it, but I think it is somewhat related to or caused by

Re: array's first element is empty

2001-11-26 Thread Joshua Chamas
Issac Goldstand wrote: I don't think this is OT. I have had a similar error in which SELECT statements return fine under mod_cgi, but mysteriously get an extra null field underl mod_perl with Apache::DBI... I don't know what causes it, nor have I looked into it, but I think it is somewhat

Re: mod_perl segfaulting (Redhat 7.2, DSO, Apache 1.3.20)

2001-11-26 Thread Ged Haywood
Hi there, On Mon, 26 Nov 2001, John Chia wrote: Still segfaulting. Same place. [snip] Summary of my perl5 (revision 5.0 version 6 subversion 1) configuration: [snip] Compiler: [snip] gccversion='2.96 2731 (Red Hat Linux 7.12.96-98)', Did you compile Perl yourself? 73, Ged.

Re: array's first element is empty

2001-11-26 Thread Issac Goldstand
Well, I don't want to cry wolf (or Bug in this case). I wasn't going to bring it up except that this was getting shoved off of mod_perl, and I didn't think that it should... I'm not going to cry bug unless I can back it up - it just might be a fluke coincidence - I don't know. I just wanted to

Re: mod_perl segfaulting (Redhat 7.2, DSO, Apache 1.3.20)

2001-11-26 Thread John Chia
On 26 November 2001 23:41 (+), Ged Haywood wrote: Did you compile Perl yourself? Yep. -- john chia [EMAIL PROTECTED] starnix inc. tollfree: 1-87-pro-linuxthornhill, ontario, canada http://www.starnix.com professional