Re: Documentation patch for mod_perl//win32

2001-11-21 Thread Alessandro Forghieri
Greetings. Randy That's great that you thought this out and put it together; Randy a few comments below appear below ... Thanks for playing editor - and I am accepting all of your suggestions, with the possible exception of what follows. Randy I got confused about which is the first and which

Re: mod_perl make test fails

2001-11-21 Thread Lyle Brooks
I experienced a similar problem (I was upgrading one thing, which let to upgrading another,... which led to why not upgrade just about everything :-) My configuration/versions are pretty similar. I modified lib/Apache/test.pm, at line 8 I put use URI::URL (); and then I modified

RE: PerlModule not updating %INC

2001-11-21 Thread Geoffrey Young
-Original Message- From: Perrin Harkins [mailto:[EMAIL PROTECTED]] Sent: Tuesday, November 20, 2001 6:43 PM To: David Pisoni; [EMAIL PROTECTED]; Robert Landrum Subject: Re: PerlModule not updating %INC [snip] It sounds like this is a real bug with PerlModule. This was

Re: mod_perl make test fails

2001-11-21 Thread Marcus Taylor
this fixes it (reposted here) make test expects 3 pre-loaded perl modules to be present in order to execute. One of them is LWP::UserAgent (part of libwww-perl) The problem you specify only occurs if you have installed a version of libwww-perl that is 5.53 (probably v. 5.6) If

[SOT] EmuMail and mod_perl

2001-11-21 Thread Geoffrey Young
hi all... just curious if anyone out there has run EmuMail's WebMail under mod_perl. I've been tasked with evaluating a legacy system here and the feasability of porting the installation from FastCGI to mod_perl in the hopes of reducing the strain on the box and speeding things up a bit.

Random perl errors

2001-11-21 Thread Michael Nelson
I have two web servers carrying a light load that are encountering errors like the following. They occur randomly but often enough to be a serious problem. Example #2 in particular seems to repeat itself continuously until I restart Apache. I have perused the mod_perl archives and some other

Re: Random perl errors

2001-11-21 Thread Stas Bekman
Michael Nelson wrote: I have two web servers carrying a light load that are encountering errors like the following. They occur randomly but often enough to be a serious problem. Example #2 in particular seems to repeat itself continuously until I restart Apache. I have perused the

Re: PerlModule not updating %INC

2001-11-21 Thread Perrin Harkins
I wonder if this has something to do with the multiple init thing http://marc.theaimsgroup.com/?l=apache-modperlm=100510779912574w=2 It does. It's exactly the same bug. if the interpreter is really being entirely broken down on each restart (including the initial one that Apache does when

RE: PerlModule not updating %INC

2001-11-21 Thread Geoffrey Young
-Original Message- From: Perrin Harkins [mailto:[EMAIL PROTECTED]] Sent: Wednesday, November 21, 2001 11:01 AM To: Geoffrey Young; [EMAIL PROTECTED]; David Pisoni Subject: Re: PerlModule not updating %INC I wonder if this has something to do with the multiple init thing

Re: PerlModule not updating %INC

2001-11-21 Thread Perrin Harkins
IIRC, I ran a test with only httpd.conf.default with only these additions PerlModule My::Foo then package My::Foo; warn initializing...; in lib/perl and I got 'initializing' on each restart. no Apache::ReadConfig going on here. And no PerlFreshRestart?

RE: PerlModule not updating %INC

2001-11-21 Thread Geoffrey Young
-Original Message- From: Perrin Harkins [mailto:[EMAIL PROTECTED]] Sent: Wednesday, November 21, 2001 11:12 AM To: Geoffrey Young; [EMAIL PROTECTED]; David Pisoni Subject: Re: PerlModule not updating %INC IIRC, I ran a test with only httpd.conf.default with only these

RE: PerlModule not updating %INC

2001-11-21 Thread Geoffrey Young
ok, here was my test... [geoff@mainsheet apache]$ diff -u conf/httpd.conf.default conf/httpd.conf --- conf/httpd.conf.default Wed Nov 21 02:00:16 2001 +++ conf/httpd.conf Wed Nov 21 11:59:35 2001 @@ -38,6 +38,8 @@ # server as /usr/local/apache/logs/foo.log. # +PerlModule My::Foo +

Re: PerlModule not updating %INC

2001-11-21 Thread David Pisoni
At 11.00 -0500 11/21/2001, Perrin Harkins wrote: SNIP David, are you using Apache::ReadConfig or anything that uses it? - Perrin Nope, not using ReadConfig. And to address another point, the behavior is consistant regardless of whether or not PerlFreshRestart is on. David

A request's Origins

2001-11-21 Thread Rasoul Hajikhani
Hello folks, I am trying to find out where (which machine) a request has come from. We have several web servers running on different machines serving different documents, so it is possible to jump servers back and forth. This means that I would have to know what prev-uri was/is and what r-uri

Seeking Legal help

2001-11-21 Thread Medi Montaseri
HiI know this is not the lawyers hang-out, but it is seasoned contractor's hangout and as such I need some legal advice...May I? I did some work (about $25000 worth) for a customer and I'm having problem collecting. One big problem is that I don't have a formal signed hardcopy contract

RE: A request's Origins

2001-11-21 Thread Andy Sharp
If you're simply looking for which link they clicked on to bring them to this particular page/screen; it should be stored in $ENV{HTTP_REFERER} Also: my $prev_page = $r-header_in(Referer); # http://www.someplace.com/withalinktohere.html --A Hello folks, I am trying to find out where (which

Apache::Session Problem

2001-11-21 Thread Jonathan M. Hollin
Fellow Perl Mongers, Can anyone help with my latest programming riddle? I am trying to take advantage of the session-handling features of Apache::Session. My program includes the following code (line numbers added for clarity): 20: # Session handler (I)... 21: use Apache::Session::DBI; [cut]

Re: Apache::Session Problem

2001-11-21 Thread Ilya Martynov
On Wed, 21 Nov 2001 22:49:46 -, Jonathan M. Hollin [EMAIL PROTECTED] said: Jonathan Fellow Perl Mongers, Jonathan Can anyone help with my latest programming riddle? Jonathan I am trying to take advantage of the session-handling Jonathan features of Apache::Session. My program includes

[OT] Re: Seeking Legal help

2001-11-21 Thread Matt Sergeant
On Wed, 21 Nov 2001, Medi Montaseri wrote: HiI know this is not the lawyers hang-out, but it is seasoned contractor's hangout and as such I need some legal advice...May I? I did some work (about $25000 worth) for a customer and I'm having problem collecting. One big problem is that I

Re: [OT] Re: Seeking Legal help

2001-11-21 Thread Dave Rolsky
On Wed, 21 Nov 2001, Matt Sergeant wrote: Maybe they weighlayed your invoice. Or don't have the money just yet but ^^^??? You folks may have invented the language but its still spelled waylayed! Step three: Once you've given them 90 days after date of invoice, get a solicitor

Apache::Session Problem -- Addendum

2001-11-21 Thread Jonathan M. Hollin
Thanks to Ilya Martynov for his response... I changed Apache::Session::DBI to Apache::Session::MySQL and tried again. The following error graced my error log: [Wed Nov 21 23:01:13 2001] [error] PerlRun: `Died at E:/Apache/site/lib/Apache/Session/Generate/MD5.pm line 40.' Looking at MD5.pm -

Re: Seeking Legal help

2001-11-21 Thread Robert Landrum
At 3:21 PM -0800 11/21/01, Medi Montaseri wrote: HiI know this is not the lawyers hang-out, but it is seasoned contractor's hangout and as such I need some legal advice...May I? I did some work (about $25000 worth) for a customer and I'm having problem collecting. One big problem is that I

Re: Seeking Legal help

2001-11-21 Thread Michael Bacarella
On Wed, Nov 21, 2001 at 03:21:06PM -0800, Medi Montaseri wrote: [...] After months of promissing sweet equity, partnership, this and that, finally customer has asked me to invoice them and charge interest for the unpaid balance. At the same time customer is using the application I wrote for

Re: Seeking Legal help

2001-11-21 Thread Robert Koberg
Invoice immediatley. When you send it, tell the client you are sending it, and that you could really use the money since this is how you pay the bills. Call the client back in a few days to see if they got it. If they haven't then offer to fax it to him. If they have it ask them how long it

Re: Seeking Legal help

2001-11-21 Thread Todd Finney
At 06:38 PM 11/21/01, Michael Bacarella wrote: On Wed, Nov 21, 2001 at 03:21:06PM -0800, Medi Montaseri wrote: After months of promissing sweet equity, partnership, this and that, finally customer has asked me to invoice them and charge interest for the unpaid balance. At the same time

Re: Apache::Session Problem -- Addendum

2001-11-21 Thread Perrin Harkins
I changed Apache::Session::DBI to Apache::Session::MySQL and tried again. What's the version number of your Apache::Session? It should be 1.54. 42: tie %session, 'Apache::Session::DBI', 43: {DataSource = dbi:$db_driver:sessions:$db_address}; With Apache::Session::MySQL, the docs say you

Re: Apache::Session Problem -- Addendum

2001-11-21 Thread Tatsuhiko Miyagawa
On Wed, 21 Nov 2001 23:23:33 - Jonathan M. Hollin [EMAIL PROTECTED] wrote: 42: tie %session, 'Apache::Session::DBI', 43: {DataSource = dbi:$db_driver:sessions:$db_address}; put $sid (session id: undef for fresh) after 'Apache::Session::MySQL'. -- Tatsuhiko Miyagawa [EMAIL PROTECTED]

Re: A request's Origins

2001-11-21 Thread Randal L. Schwartz
Andy == Andy Sharp [EMAIL PROTECTED] writes: Andy If you're simply looking for which link they clicked on to bring them to Andy this particular page/screen; it should be stored in $ENV{HTTP_REFERER} Unless that value is wrong (sometimes), faked (possibly), or stripped (by a security-conscious

cvs commit: modperl-2.0/lib/Apache Build.pm

2001-11-21 Thread stas
stas01/11/21 19:46:47 Modified:lib/Apache Build.pm Log: doc patch: '-e rebuild' reads better than '-erebuild' Revision ChangesPath 1.74 +4 -4 modperl-2.0/lib/Apache/Build.pm Index: Build.pm