Re: Perl 6 + mod_perl

2003-06-20 Thread Leon Brocard
Nigel Hamilton sent the following bits through the ether: > While reading this section I wondered how Parrot would fit > into the interpreter pool scheme available in mp2? Has anyone got any > theories on how Perl 6 and mod_perl may merge in the future? This is a little speculative as Par

RE: puzzle of split() running under mod_perl

2003-06-20 Thread Raf
Hi June, JY - June Young said: > with/without double quotes on the regexp. The print of the "dir after=" > shows that split correctly parsed the input string. The only difference > is that the server dies upon global destruction? > > As a matter of fact, I am very confused by the error message of

Installation Problem

2003-06-20 Thread Ankur Jain
Hi, I have RHL 8.0 and Apache2.0 running and perl 5.8.0. I am trying to install the modperl2.0 It's going fine till the make procedure but when I run the "make test" it prompts that "no test server configured please specify a httpd or apxs or put either in your path. Eg: t/TEST -httpd /path/t

Re: puzzle of split() running under mod_perl

2003-06-20 Thread Raf
Ok, before heading off for the evening, here's a guess which may be totally wrong. JY - June Young said: > We are running CSWS1.2 (based on Apache 1.3.6) on Open VMS V7.3-1 and > CSWS_PERL V1.1 based on Mod_Perl V1.25. Main assumption ( this is buggy and not real apache/mod_perl ) - (as buggy as

Re: mod_perl PerlTransHandler weirdness

2003-06-20 Thread Aaron Ross
just fyi, mod_rewrite should be capable of handling those tests. See the file tests under http://httpd.apache.org/docs-2.1/en/mod/mod_rewrite.html#rewritecond HTH, Aaron On Tue, 2003-06-17 at 08:56, Joel Bernstein wrote: > Alternatively, can anybody suggest a different way to offer this > functi

List Server

2003-06-20 Thread Paul Actis
Can someone please tell me how I can get off this mailing list???

win32 + apache2 + mysql

2003-06-20 Thread Joshua Burley
Hey all, I'm having some trouble with mod_perl and mysql on Win32 and Apache2 (used the all-in-one package to install). Our app stores the user's session data into mysql with Apache::Session, with the session id stored as a cookie. Standard stuff... When we're testing it with o

Invalid method in request

2003-06-20 Thread Oskar
Hi, everytime I am trying post form with enctype="multipart/form-data" it does not send any data and Apache reports errror: Invalid method in request -some boundary key. All methods of request are permitted on that directory. Single post works ok. Any solution? Oskar

Re: Error: Dynamic Link Library libxml2.dll could not be found in the specified path

2003-06-20 Thread Lynette Tillner
Thank you. I just copied libxml2.dll to d:\apache2\bin (where apache starts up) and all is fine now. Thanks so much! Have a great weekend! Lynette - Original Message - From: "Randy Kobes" <[EMAIL PROTECTED]> To: "Lynette Tillner" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]>; <[EMAIL PR

Does DBD::Pg work w/mp2?

2003-06-20 Thread Marc M. Adkins
Is anyone using PostgreSQL via DBD::Pg in a threaded environment? I'm getting: [Fri Jun 20 11:47:57 2003] [error] [client 127.0.0.1] DBD::Pg::dr default_user failed: handle 1 is owned by thread 126e2e4 not current thread 11df014 (handles can't be sh

Re: Error: Dynamic Link Library libxml2.dll could not be found inthe specified path

2003-06-20 Thread Randy Kobes
On Fri, 20 Jun 2003, Lynette Tillner wrote: > Hi, this is my first post. I just installed a binary > distribution for Win32 of Perl 5.8.0 and Apache 2.046 together > with mod_per-1.99 ( by Randy Kobes, May 29, 2003). > > I installed it on a Windows 98 SE machine first. The install > seemed to wo

Error: Dynamic Link Library libxml2.dll could not be found in the specified path

2003-06-20 Thread Lynette Tillner
Hi, this is my first post.  I just installed a binary distribution for Win32 of Perl 5.8.0 and Apache 2.046 together with mod_per-1.99 ( by Randy Kobes, May 29, 2003).   I installed it on a Windows 98 SE machine first.  The install seemed to work fine there were some errors when I was follo

RE: A::Registry vs. mod_perl handler philosophy

2003-06-20 Thread Dmitri Bichko
>All new code should use handlers. I wouldn't necessarily agree, A::R has a few advantages. As some have already mentioned portability is one of them, and this includes running the same scripts command line, not just under legacy CGI systems. Perhaps more important is the speed of development, A:

Re: A::Registry vs. mod_perl handler philosophy

2003-06-20 Thread Ged Haywood
Hi Ken, On Fri, 20 Jun 2003, Ken Y. Clark wrote: > On Fri, 20 Jun 2003, Ged Haywood wrote: > > > All new code should use handlers. > > I wouldn't be so strict about such definitions. I didn't say "must". :) > Or am I missing something? You will get better performance from handlers and you c

Re: A::Registry vs. mod_perl handler philosophy

2003-06-20 Thread Ken Y. Clark
On Fri, 20 Jun 2003, Ged Haywood wrote: > Date: Fri, 20 Jun 2003 17:25:23 +0100 (BST) > From: Ged Haywood <[EMAIL PROTECTED]> > To: Peter B. Ensch <[EMAIL PROTECTED]> > Cc: [EMAIL PROTECTED] > Subject: Re: A::Registry vs. mod_perl handler philosophy > > Hi there, > > On Fri, 20 Jun 2003, Peter B.

Re: A::Registry vs. mod_perl handler philosophy

2003-06-20 Thread Ged Haywood
Hi there, On Fri, 20 Jun 2003, Peter B. Ensch wrote: > I'm beginning to develop apps under mod_perl. I'm > curious as to how people decide between coding for > Apache::Registry vs. mod_perl handlers. Use Apache::Registry only if you have to in order to get legacy CGI scripts working. > It's bee

A::Registry vs. mod_perl handler philosophy

2003-06-20 Thread Peter B. Ensch
I'm beginning to develop apps under mod_perl. I'm curious as to how people decide between coding for Apache::Registry vs. mod_perl handlers. It's been suggested to me that content generating apps should be done under A::R, whereas logging, authentication Etc. should be implemented as mod_perl han