Re: Pb w/ Archive::Zip under Mac OS X 10.5

2007-11-14 Thread Laurent MARTIN
That sounds like the perl you compiled this module with (and that you use when you run CGI) is not the same as the one you compiled mod_perl with. Perrin, thank you for your help on this. I've checked my whole disk and I've got only one 'perl' binary, ie. the one provided with Leopard (I

Re: Pb w/ Archive::Zip under Mac OS X 10.5

2007-11-14 Thread Perrin Harkins
On Nov 14, 2007 6:17 AM, Laurent MARTIN [EMAIL PROTECTED] wrote: I've checked my whole disk and I've got only one 'perl' binary, ie. the one provided with Leopard (I haven't compiled Perl by myself) and installed in /usr/bin. Did you upgrade this machine though? It's possible that you had a

modperl blog system

2007-11-14 Thread lists user
is there a free weblog system which is developed by modperl, or common perl CGI? my company's site want to add a blog entry,surely i can write one in few days,but don't like to re-make wheels. thanks guys.

Parallel processing within mod_perl

2007-11-14 Thread Michael Lackhoff
Hello, I have a mod_perl2 application that searches some databases (custom socket connections, no DBI). Now I would like to run the searches in parallel, collect all the results and return them after some post-processing. I searched the net and asked on perlmonks

Re: modperl blog system

2007-11-14 Thread Mike Schienle
On Wed, November 14, 2007 9:51 am, Martijn wrote: On Nov 14, 2007 2:58 PM, lists user [EMAIL PROTECTED] wrote: is there a free weblog system which is developed by modperl, or common perl CGI? my company's site want to add a blog entry,surely i can write one in few days,but don't like to

Re: modperl blog system

2007-11-14 Thread Martijn
On Nov 14, 2007 2:58 PM, lists user [EMAIL PROTECTED] wrote: is there a free weblog system which is developed by modperl, or common perl CGI? my company's site want to add a blog entry,surely i can write one in few days,but don't like to re-make wheels. Movable Type

Re: Parallel processing within mod_perl

2007-11-14 Thread Andy Armstrong
On 14 Nov 2007, at 15:07, Michael Lackhoff wrote: If my analysis is correct I would like to know: 1. How to properly wait for the children and 2. How to get the results back to the main process Is there some common storage in apache/mod_perl where the children can write and the parent can

Re: Pb w/ Archive::Zip under Mac OS X 10.5

2007-11-14 Thread Laurent MARTIN
Did you upgrade this machine though? It's possible that you had a different perl before and that Archive::Zip was compiled with it. No, my version of Archive::Zip has just been downloaded from CPAN and compiled w/ the same Perl release as mod_perl.so (by me, so). I don't know enough about

Re: OffTopic (slightly) - Module Feedback Wanted - Authen::Ticketless

2007-11-14 Thread Geoffrey Young
That being said - i. i'd like to explore Digest Access more, as a replacement for CRAM-MD5 a long time ago I thought that you could use the nonce in digest auth to provide this kind of thing: http://search.cpan.org/dist/Apache-AuthDigest/Session/Session.pm fwiw --Geoff

Re: error log analyzer/reporter

2007-11-14 Thread E R
I have a need to develop such an error-log analyzer but with real-time analysis. The approach I am currently considering is to implement it as a specialized web server so it can asynchronously process the log messages and respond to requests for gathered statistics. I'd like to write it all in

Re: error log analyzer/reporter

2007-11-14 Thread Perrin Harkins
On Nov 14, 2007 1:17 PM, Jonathan Swartz [EMAIL PROTECTED] wrote: We want to periodically analyze our apache error logs, and send out email reports with summaries of new errors that have occurred since the last report. Ideally, similar errors would be combined into groups, and reported in

Re: OffTopic (slightly) - Module Feedback Wanted - Authen::Ticketless

2007-11-14 Thread David Nicol
have you read up on how CHAP (Challenge Handshake Authentication Protocol) worked for dialup authentication? IIRC it was designed to allow secure-enough authentication over a sniffable channel (modem traffic) at the cost of forcing plaintext password storage on the server side.