Re: Stumped: ignored

1999-11-23 Thread Miguel A.L. Paraz
Hi, On Tue, Nov 23, 1999 at 07:52:50AM -0500, darren chamberlain wrote: > I'm doing soemthing similar right now, where there is no actual document > root, Yup! That did it. DocumentRoot overrides the handler after all... now I'm in business... I thought I needed the DocumentRoot for somethin

Re: Re: Web Crawler

1999-11-23 Thread Miguel A.L. Paraz
On Tue, Nov 23, 1999 at 07:00:27AM -0500, ricarDo oliveiRa wrote: > - I'm not writing a web crawler from scratch. the initial source code was > based on Google's, adapted to serve the specific needs of this web site where did you get source code of Google!? cheers, ---m -- Miguel "Migs" A.L.

Stumped: ignored

1999-11-23 Thread Miguel A.L. Paraz
Hi, I hit this months ago but never really solved it... I'm working with the WING e-mail package by Malcolm Beattie. In my httpd.conf I have tried: PerlModule Wing_miranda_herrera_iphil_net::Balance SetHandler perl-script PerlHandler Wing_miranda_herrera_iphil_net::Balance and: $

Re: Apache::Filter - get_handlers

1999-10-24 Thread Miguel A.L. Paraz
Hi, Yup, using David H's apache-modperl RPM fixed it. I was previously using Red Hat's RPM - I guess they built it wrong? Next question - a HEAD request on this Filter'ed page is treated as a GET. Is that right? Thanks, ---m On Sat, Oct 23, 1999 at 10:47:58AM -0500, Ken Williams wrote: > You

Apache::Filter - get_handlers

1999-10-22 Thread Miguel A.L. Paraz
Hi all, Where is get_handlers lurking? I couldn't find it in any of the Apache:: modules. The error: [error] Can't locate object method "get_handlers" via package "Apache" at /usr/lib/perl5/site_perl/5.005/Apache/Filter.pm line 77. The code: if (@{$r->get_handlers('PerlHandler')} == $info->{

Re: Apache::Session::DBI and PostgreSQL

1999-10-17 Thread Miguel A.L. Paraz
Hi, On Sun, Oct 17, 1999 at 11:21:00AM -0400, Francis J. Lacoste wrote: > This is because the DBIStore insert the encoded session data as > binary data. PostgreSQL doesn't like that. You have to modify > Apache::Session::DBIStore (or better implement a PGStore) > to uuencode the session data. Yo

Apache::Session::DBI and PostgreSQL

1999-10-17 Thread Miguel A.L. Paraz
Hi all, I'm trying out Apache::Session for the first time, with this bit of code adapted from the manual: #!/usr/bin/perl -w use strict; #use Apache::Session::File; use Apache::Session::DBI; my %session; #make a fresh session for a first-time visitor #tie %session, "Apache::Session::File", un

Re: mod_perl rpm ready for testing

1999-10-16 Thread Miguel A.L. Paraz
Hi, On Fri, Oct 15, 1999 at 11:35:42AM -0400, David Harris wrote: > Does this mean that you've gotten my RPM to work for you in places where the > Red Hat mod_perl RPM did not? If so, good, and I'll continue with releasing > this stuff up on the web. Expect it to be done sometime later today. Ye

Your thoughts about authentication

1999-10-16 Thread Miguel A.L. Paraz
Hi all, I would like to know if this is at all possible with the "stock" modules, or if I have to rolly my own. I want to make a "membership" site where users can access their private pages ats http://site/private/username/. /private will map to a script (or if the case may be, a module) that j

-HUP makes httpd grow

1999-10-16 Thread Miguel A.L. Paraz
I'm sorry if this is a FAQ... Every time I give httpd a -HUP to make .conf changes take effect, the memory consumption of the process (VSZ and RSS) grows. Is this really like this? Thanks, ---m -- [EMAIL PROTECTED]Miguel "Migs" A.L. Paraz http://www.iphil.n

Re: mod_perl rpm ready for testing

1999-10-14 Thread Miguel A.L. Paraz
Hi! On Wed, Oct 13, 1999 at 04:24:55PM -0400, David Harris wrote: > I've just completed the first copy of the mod_perl RPM that I said I was > going to create about a week ago. Sorry this took so long, I had a whole > bunch of things that needed to be done first. Thanks a lot for solving my lo

ignored

1999-10-07 Thread Miguel A.L. Paraz
Hi, I'm working with the WING web e-mail system, and have it running on two systems. Now I'm working on it on a third system with the same configuration (Apache/1.3.9 mod_perl/1.21), but this bit of config stopped working: PerlModule Wing::Balance SetHandler pe