[JOB WANTED] mod_perl programmer for hire

2001-01-02 Thread chris
Thought I'd drop a note to announce my availability for either short-term or permanent employment. FYI, I live in San Francisco and don't want to move w/o quite a good reason, but I'll telecommute anywhere ;) In my previous job I designed and implemented a mod_perl web application that used an

Re: [RFC] New Apache Module, comments and name suggestions requested

2001-01-02 Thread Andy Wardley
On Dec 22, 1:15pm, darren chamberlain wrote: How is this different from using Template Toolkit directly? It's not, except that using the module is as simple as: FilesMatch "*.html$" SetHandler perl-script PerlHandler Grover /FilesMatch The module's working name is Grover, but it

[DIGEST] mod_perl digest 12/25/2000

2001-01-02 Thread Geoffrey Young
-- mod_perl digest December 25, 2000 - December 31, 2000 -- Recent happenings in the mod_perl world... Features

Re: how to secure backend server ?

2001-01-02 Thread Matt Sergeant
On Tue, 2 Jan 2001, Oleg Bartunov wrote: Hi, I have implement standard fe-be scheme as many times discussed in this list and described by Stas in his guide. Sorry, if I don't understand something simple. Everything works but I get a problem with securing my backend server - I want

Re: how to secure backend server ?

2001-01-02 Thread Gunther Birznieks
At 03:02 PM 1/2/01 +, Matt Sergeant wrote: On Tue, 2 Jan 2001, Oleg Bartunov wrote: Hi, I have implement standard fe-be scheme as many times discussed in this list and described by Stas in his guide. Sorry, if I don't understand something simple. Everything works but I get a

Re:how to secure backend server ?

2001-01-02 Thread Mike Miller
On Tuesday, January 02, 2001, Gunther Birznieks wrote the following about "how to secure backend server ?" GB I am not sure, but I suspect it may be possible to distinctly GB bind to 127.0.0.1 and thus disallow any external IP address GB listening for extra measure. The default for apache is to

LWP and HTML::HeadParser....failed

2001-01-02 Thread Yung Kwong Wing
Hi , I was trying to install mod_perl, but I ended up with 'LWP agent not found" errors and an "HTML:HeadParserfailed". As shown in my homepage below: "http://home.netvigator.com/~yungp/my_perl.html" Some of the helpful feedbacks from users of this mailing list say that I should install

Re: LWP and HTML::HeadParser....failed

2001-01-02 Thread John K Sterling
Yung Kwong Wing wrote: "[thekid@visors thekid]# perl -MCPAN -install LWP Can't open perl script "LWP": No such file or directory" try: perl -MCPAN -e 'install "LWP"' sterling

Memory leaks?

2001-01-02 Thread Per 'stripe' Moeller
Hi, I have created a highly configurable content management system in modperl to build websites, which consists of several modules, some preload when apache initiates, some when a request initiates and some when needed. I had the opportunity to test the system with 2000 lan connected users to

Re: Memory leaks?

2001-01-02 Thread Matt Sergeant
On Tue, 2 Jan 2001, Per 'stripe' Moeller wrote: Hi, I have created a highly configurable content management system in modperl to build websites, which consists of several modules, some preload when apache initiates, some when a request initiates and some when needed. I had the opportunity

Re:how to secure backend server ?

2001-01-02 Thread Oleg Bartunov
On Tue, 2 Jan 2001, Mike Miller wrote: Date: Tue, 2 Jan 2001 11:14:26 -0500 From: Mike Miller [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Re:how to secure backend server ? On Tuesday, January 02, 2001, Gunther Birznieks wrote the following about "how to secure backend server ?"

Re: how to secure backend server ?

2001-01-02 Thread darren chamberlain
Oleg Bartunov ([EMAIL PROTECTED]) said something to this effect on 01/02/2001: You can explicitly bind an apache server to localhost. This works only if frontend and backend are on the same physical server. But it will not works even in this situation if you have several proxies running

Re: how to secure backend server ?

2001-01-02 Thread Oleg Bartunov
On Tue, 2 Jan 2001, Gunther Birznieks wrote: Date: Tue, 02 Jan 2001 23:41:01 +0800 From: Gunther Birznieks [EMAIL PROTECTED] To: Matt Sergeant [EMAIL PROTECTED], Oleg Bartunov [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: Re: how to secure backend server ? At 03:02 PM 1/2/01 +,

Mod Perl v1.24_01

2001-01-02 Thread Steve Haemelinck
I want to configure my apache server (1.3.14) with mod_perl (1.24_01) But when I configure mod_perl with the following command * perl Makefile.PL APACHE_SRC=/usr/src/http/apache_1.3.14/src DO_HTTPD=1 USE_APACI=1 PREP_HTTPD=1 EVERYTHING=1 * make * make test -- Gives the

Configuration File for Apache

2001-01-02 Thread Steve Haemelinck
Can someone send me a Configuration File for Apache please? THX winmail.dat

haunting variable values ? nested subs : cookies

2001-01-02 Thread Don Fike
Hello, I have a fairly simple/straight forward scripts which displays a form. I set a cookie to store name and email for the submitting user just in case they return. Yet when I set the cookie it gets set for all, from anywhere, not just me on my desktop. Sometimes a previous cookie pops

Re: Configuration File for Apache

2001-01-02 Thread G.W. Haywood
Hi there, On Tue, 2 Jan 2001, Steve Haemelinck wrote: Can someone send me a Configuration File for Apache please? That's a bit like asking for someone to send you a book. It's not quite as easy as that. If you're just talking about Apache, then you're on the wrong List. If you're talking

Re: haunting variable values ? nested subs : cookies

2001-01-02 Thread G.W. Haywood
Hi there, On Tue, 2 Jan 2001, Don Fike wrote: I know my description is rather cryptic Yup. but if you recognize a problem please let me know. Well at least you've been looking at the Guide! Could be you need to read the debugging section. It's sometimes easier to debug if you start

PerlSetupEnv Off not working

2001-01-02 Thread JR Mayberry
Perhaps I am a bit confused about how this should be working...but.. I have PerlSetupEnv set to Off in httpd.conf.. yet in this sample script running as an Apache::Registry script: #!/opt/bin/perl use Data::Dumper; my $r = Apache-request(); $r-send_http_header('text/plain'); print

Re: PerlSetupEnv Off not working

2001-01-02 Thread John K Sterling
check the guide: http://thingy.kcilink.com/modperlguide/performance/PerlSetupEnv_Off.html But %ENV population is expensive. Those who have moved to the Perl Apache API no longer need this extra %ENV population, and can gain by turning it Off. Scripts using the CGI.pm module require

Re: PerlSetupEnv Off not working

2001-01-02 Thread JR Mayberry
I understand that, but that is not what I am asking. Theoretically if CGI.pm requires PerlSetupEnv, then those scripts which use CGI.pm should stop working.. they are working just fine.. the %ENV hash is being populated as well.. yet plain as day in httpd.conf it says PerlSetupEnv Off what

Re: PerlSetupEnv Off not working

2001-01-02 Thread JR Mayberry
Perhaps the problem is that the page reads... PerlSetupEnv Off is another optimization you might consider. This directive requires mod_perl 1.25 or later. but I run mod_perl 1.24, but http://perl.apache.org/dist/ makes no reference to mod_perl 1.25 ? John K Sterling wrote: check the

Re: PerlSetupEnv Off not working

2001-01-02 Thread John K Sterling
i assume thats a typo, i think PerlSetupEnv has been in since '96 have you seen this bug report? http://marc.theaimsgroup.com/?l=apache-modperlm=95867712412668w=2 might have something to do with it. sterling JR Mayberry wrote: Perhaps the problem is that the page reads... PerlSetupEnv Off

Apache::Request param() problem?

2001-01-02 Thread James Sheridan-Peters
Quick summary: Pulling parameters from a POST method using Apache::Request, largely to make it easier to deal with multiple value variables. The problem occurs if I have two variables, differentiated only by case (eg. wanthelp=something and wantHelp=somethingelse). Given the about

PerlChildInitHandler not being called

2001-01-02 Thread Paul J. Lucas
I looked in the archives for this problem and, while mentioned, not definitive solution was apparantly found. I did notice the handler get called once, but only once: total server shutowns and restarts don't make it get called. I'm using Apache 1.3.12,

Re: haunting variable values ? nested subs : cookies

2001-01-02 Thread mark warren bracher
we were seeing something similiar with old/variant cookie data, turned out to be the difference between $r-headers_out-add('Set-Cookie'=$cookie); and $r-headers_out-set('Set-Cookie'=$cookie); you show your code for generating the cookie, but not setting it, so I have no way of knowing

[ANNOUNCE] Apache::ProxyRewrite 0.10

2001-01-02 Thread Christian Gilmore
The uploaded file Apache-ProxyRewrite-0.10.tar.gz has entered CPAN as file: $CPAN/authors/id/C/CG/CGILMORE/Apache-ProxyRewrite-0.10.tar.gz size: 10759 bytes md5: eb5a80cb7ded3e41705382b371ae5015 Apache::ProxyRewrite acts as a reverse-proxy that will rewrite URLs embedded in HTML

[JOB WANTED] Perl Contractor Available

2001-01-02 Thread James
Hello Perl People. I'm available for Perl contracting, either on-site in the Bay Area or telecommute. I have extensive experience with Perl, DBI (Oracle and mySQL), web development, i18N, Solaris/Linux system administration (DNS, sendmail, qmail, Apache, etc.) Some experience with mod_perl

modperler's needed, and hello again!

2001-01-02 Thread Shane Nay
Modperlers..., Hello, this is Shane Nay, I used to post quite a bit. (Hello Josh, Stas, Peren, Doug, and many others of course) BTW Stas, $contributors=~/Shane/Shane Nay/;, and big Thanks . Well I'm posting now, (and resubscribed :) because I need someone to fill a modperl developement

Extracting values from variable

2001-01-02 Thread Kok Wei
I have a space quoted string ... like this: apple orange watermelon How can I extract "apple", "orange" and "watermelon" one by one into a variable say $str to be processed? Koh Kok Wei Web Developer Dream Tree (M) Sdn. Bhd. Level 59, Tower 2, Petronas Twin Towers Kuala Lumpur City Centre

Re: Extracting values from variable

2001-01-02 Thread Ken Williams
This kind of question would be better asked on a general Perl list, not the mod_perl list. But here's one quick solution: while ($text =~ /(\w+)/g) { $str = $1; ... } The Perl Cookbook, or Mastering Regular Expressions, or Effective Perl Programming are all good books to learn this

Apache::AuthCookieDBI BEGIN problems...??

2001-01-02 Thread Jeff Sheffield
Well been racking my brain against this one for awhile now.. so I figured that I would reach-out for some help ;) First let me say I am ashamed ... I twitled with the shiny bits. the following code in the Apache::AuthCookieDBI module does not work properly (for me). -- code -- BEGIN {

Re: Apache::AuthCookieDBI BEGIN problems...??

2001-01-02 Thread Jeff Sheffield
ahh yes my config file is here for anyone who is intrested oopse http://www.jspot.org/jeff/temp/custom.after Thanks, Jeff - | Gender Diff's | | THOUGHT FOR THE DAY: Any

Re: prob with dir_config at server startup

2001-01-02 Thread John K Sterling
the per_dir_configs (i.e. Location PerlSetVar) are not accessabled from the Apache::Server. They are only accessable from Apache::Request::dir_config. It makes sense if you think about it - a per_dir config can be different for each Location. If you need any config values in a PerlInitHandler,

cvs commit: modperl-2.0/todo possible_new_features.txt

2001-01-02 Thread dougm
dougm 01/01/02 11:48:47 Modified:..cvsignore todo possible_new_features.txt Added: pod .cvsignore Log: foo Revision ChangesPath 1.2 +1 -0 modperl-2.0/.cvsignore Index: .cvsignore

cvs commit: modperl-2.0/pod modperl_design.pod

2001-01-02 Thread dougm
dougm 01/01/02 11:53:13 Added: pod modperl_design.pod Log: design doc Revision ChangesPath 1.1 modperl-2.0/pod/modperl_design.pod Index: modperl_design.pod === =head1 NAME