Re: [ANNOUNCE] Apache::ProxyRewrite 0.11

2001-01-15 Thread Stephane Bortzmeyer
On Sunday 14 January 2001, at 13 h 55, the keyboard of "Christian Gilmore" [EMAIL PROTECTED] wrote: Apache::ProxyRewrite acts as a reverse-proxy that will rewrite URLs embedded in HTML documents per apache configuration directives. This module was written to allow multiple backend

RE: Apache::Registry - END Block not being called when script reloaded

2001-01-15 Thread Geoffrey Young
-Original Message- From: Chris D'Annunzio [mailto:[EMAIL PROTECTED]] Sent: Friday, January 12, 2001 3:25 PM To: [EMAIL PROTECTED] Subject: Apache::Registry - END Block not being called when script reloaded [snip] The usual behavior for Apache::Registry is to explicitly call

RE: Apache::Registry - END Block not being called when script reloaded

2001-01-15 Thread Geoffrey Young
-Original Message- From: Geoffrey Young Sent: Monday, January 15, 2001 8:57 AM To: 'Chris D'Annunzio'; [EMAIL PROTECTED] Subject: RE: Apache::Registry - END Block not being called when script reloaded I am unable to reproduce this using the latest cvs + perl 5.6.0 under a

[DIGEST] mod_perl digest 01/07/2001

2001-01-15 Thread Geoffrey Young
-- mod_perl digest January 7, 2001 - January 13, 2001 -- Recent happenings in the mod_perl world... Features o

[JOB SEEKER] Freelancer / contractor based in England (S.E)

2001-01-15 Thread Greg Cope
Dear All I will be "available" soon for contract (tele-commuting) / freelance work. My skills include perl obviously! (mod_perl, OO, modules, and DBI), Apache, MySQL, Linux, Solaris, qmail, DNS, and iffy Sybase / Oracle. I've been doing the usual CGI work and some mod_perl dynamic content /

'PerlModule Apache' creates a error when include in httpd.conf-trying to fix 'Apache.pm failed to load' problem

2001-01-15 Thread pemalone
Problem: I configure apache and mod_perl. One day it runs fine. The next day I stop and start the server and get a 'Apache.pm failed' problem. I looked at the web site and found I needed to add ' PerlModule Apache' to my httpd.conf file. I get the error message listed below. I looked at

Mod Perl Vhost

2001-01-15 Thread Slash
Hello, Can someone tell me how to setup mod_perl per vhost?? I would like to replace each vhost cgi-bin with mod_perl.. Is this possible?

RE: [ANNOUNCE] Apache::ProxyRewrite 0.11

2001-01-15 Thread Christian Gilmore
Stephane, When you say per-directory realms, do you mean you want to be able to define a ProxyAuthInfo variable multiple times? You can do that once per front-end location. Currently, the ProxyAuthInfo variable is not tied to a particular realm. Rather, it is tied to a particular URI. As for

Re: Mod Perl Vhost

2001-01-15 Thread Slash
hmm.. I can't seem to figure this out.. cgi's are not working at all now.. hmmm We have like 20+ vhost and I was thinking mod_perl would help us out alot.. We get around 200k+ hits a day and server load is unreal.. well thanks for your help anyway.. Ken Hello, Can someone tell me

Re: Mod Perl Vhost

2001-01-15 Thread Tom Kralidis
hmm.. I can't seem to figure this out.. cgi's are not working at all now.. hmmm We have like 20+ vhost and I was thinking mod_perl would help us out alot.. We get around 200k+ hits a day and server load is unreal.. well thanks for your help anyway.. Ken Is mod_perl enabled on your server, ie

HTTP_REFERRER and Mod_perl

2001-01-15 Thread Stef Telford
hello, okay, this may be a silly configuration problem, but I would really like to know if its jst me with this problem. if it is, then i dont mind being hit around the hit and pointed to the appropiate place for further reading. I have setup Apache (1.3.14) to use mod_perl for

Re: HTTP_REFERRER and Mod_perl

2001-01-15 Thread Balazs Rauznitz
You spell too well. Try HTTP_REFERER. -Balazs On Mon, 15 Jan 2001, Stef Telford wrote: hello, okay, this may be a silly configuration problem, but I would really like to know if its jst me with this problem. if it is, then i dont mind being hit around the hit and pointed to the

Re: HTTP_REFERRER and Mod_perl

2001-01-15 Thread siberian
I think your mispelling : HTTP_REFERER , not HTTP_REFERRER When in doubt run a check on your %ENV hash foreach( keys %ENV ) { print "$_ = $ENV{ $_ }\n" ; } John- On Mon, 15 Jan 2001, Stef Telford wrote: hello, okay, this may be a silly configuration problem, but I would

Re: HTTP_REFERRER and Mod_perl

2001-01-15 Thread Jeremy A. Mates
On Mon, 15 Jan 2001, Stef Telford wrote: The problems arise when i try to use HTTP_REFERRER from the $ENV enviroment. All the other variables are set jst fine (HTTP_HOST, HTTP_ACCEPT, HTTPS) but no HTTP_REFERRER. What am I doing wrong to not 'obtain' this variable. it never shows up in

Re: HTTP_REFERRER and Mod_perl

2001-01-15 Thread Clint Gilders
Stef Telford wrote: The problems arise when i try to use HTTP_REFERRER from the $ENV enviroment. All the other variables are set jst fine (HTTP_HOST, HTTP_ACCEPT, HTTPS) but no HTTP_REFERRER. What am I doing wrong to not 'obtain' this variable. it never shows up in the $ENV list.

RE: Specific limiting examples (was RE: Apache::SizeLimit for unsharedRAM ???)

2001-01-15 Thread Rob Bloodgood
I think that the problem here is that we've asked for more info and he hasn't supplied it. He's given us generics and as a result has gotten generic answers. I haven't been fishing for a handout of doing the work for me. I've been trying to see what people have done. The reason for the

Apache::DBI type functionality but per-request

2001-01-15 Thread Vivek Khera
I tend to write my apps in a modular fashion, so that each module connects to the database and fetches its data and then disconnects. Often, a program will require data from several modules resulting in a lot of wasted connect/disconnect ops. Apache::DBI does solve this issue, but I don't want

Re: HTTP_REFERRER and Mod_perl

2001-01-15 Thread Stef Telford
John wrote: I think your mispelling : HTTP_REFERER , not HTTP_REFERRER When in doubt run a check on your %ENV hash foreach( keys %ENV ) { print "$_ = $ENV{ $_ }\n" ; } you know.. thats the funny thing. I DO that. i have changed the spelling of HTTP_REFERRER to HTTP_REFERER

Re: HTTP_REFERRER and Mod_perl

2001-01-15 Thread siberian
Are you hitting the page directly? If so then you will not get a referer. You have to link to it from another page in order for that variable to be set. If the page is the first to load in the browser there is no referring page. Just a thought! John- On Mon, 15 Jan 2001, Stef Telford wrote:

Re: HTTP_REFERRER and Mod_perl

2001-01-15 Thread Stef Telford
John wrote: Are you hitting the page directly? If so then you will not get a referer. You have to link to it from another page in order for that variable to be set. If the page is the first to load in the browser there is no referring page. Just a thought! no, thank you. it was a good

RE: HTTP_REFERRER and Mod_perl

2001-01-15 Thread Khachaturov, Vassilii
Please keep in mind that what you describe is a behaviour of one particular user agent. Some UAs just never send referer for anonymity. (Sometimes proxy will do that for them). Some do it for links from a web page, but not from a file:// URL. Some don't care for the URI scheme, and you get

[Fwd: AuthenDBI idea]

2001-01-15 Thread Edmund Mergl
any comments ? Edmund -- http://www.edmund-mergl.de fon: +49 700 edemergl Edmund, I have idea for AuthenDBI.pm. I have not tried to code it yet, however. The function would come in two parts: A) Provide an option to keep a count of the number of times a user logs in. Store this value in

Confusion between script in mod_perl (fwd)

2001-01-15 Thread Pierre Laplante
I am using Registry with mod_perl and virtual host. Some time my scripts get confuse. If I do a stack backtrace, For example: /usr/local/website/caisses/cgi-bin/caisses:1:SedNove::xml, /usr/local/website/sednove/cgi-bin/nf,1079,SedNove::xml::raise,10, 2:SedNove::oper,

Re: Apache::DBI type functionality but per-request

2001-01-15 Thread Perrin Harkins
On Mon, 15 Jan 2001, Vivek Khera wrote: I tend to write my apps in a modular fashion, so that each module connects to the database and fetches its data and then disconnects. Often, a program will require data from several modules resulting in a lot of wasted connect/disconnect ops.

setting lib for mod_perl installation

2001-01-15 Thread Dave Armstrong
I just moved from dedicated to virtual hosting sigh, and was wondering how to configure mod_perl to install the modules to a private lib, outside of @INC. I simply built mod_perl and copied the modules manually to the destination dir. However, I keep getting the following error when trying to

Re: setting lib for mod_perl installation

2001-01-15 Thread Perrin Harkins
On Mon, 15 Jan 2001, Dave Armstrong wrote: I just moved from dedicated to virtual hosting sigh, and was wondering how to configure mod_perl to install the modules to a private lib, outside of @INC. http://perl.apache.org/guide/install.html#Installing_Perl_Modules_into_a_D - Perrin

Re: setting lib for mod_perl installation

2001-01-15 Thread ___cliff rayman___
did u check out this section in the guide yet? http://perl.apache.org/guide/install.html#Installation_Without_Superuser_P cliff Dave Armstrong wrote: I just moved from dedicated to virtual hosting sigh, and was wondering how to configure mod_perl to install the modules to a private lib,

Re: Looking for a new distro

2001-01-15 Thread John Saylor
Hi ( 01.01.13 12:32 -0800 ) Jamie Krasnoo: Ok, I've had it with RH 7.0. Too many problems. What Linux distro are some of you using with Apache 1.3.14 and mod perl 1.24_01? Slackware 7.1 And, I'd also consider making the leap to [Free]BSD. -- \js Milkmen deliver twice a week!

setting lib for mod_perl installation

2001-01-15 Thread Dave
I just moved from dedicated to virtual hosting sigh, and was wondering how to configure mod_perl to install the modules to a private lib, outside of @INC. I simply built mod_perl and copied the modules manually to the destination dir. However, I keep getting the following error when trying to

Re: Looking for a new distro

2001-01-15 Thread Jimi Thompson
Jamie, I'm sorry you are having problems with it. I am running it here and it's fine. I used Apache Toolbox to install it though, which you will probably want to take a look at for future reference. The site is at www.apachetoolbox.com. It will install Apache and most of the major mod's

DBIx::Easy

2001-01-15 Thread Aaron Johnson
Has any one used DBIx::Easy under mod_perl? I wrote the author and he indicated that someone had reported a memory leak under mod_perl which they said has been fixed, but not released. I am curious if anyone else has had exprience with this module and if they have used it in conjunction with

Redirecting a multipart/form-data POST request

2001-01-15 Thread Darren Stuart Embry
I am writing a program that needs to process form data, (here's the kicker) which is sometimes multipart/form-data, then redirect a user to a GET request (which doesn't need to process the form data). I would like to use the standard mechanism for issuing a redirect, for other reasons:

Re: Specific limiting examples (was RE: Apache::SizeLimit for unsharedRAM ???)

2001-01-15 Thread Ask Bjoern Hansen
On Thu, 11 Jan 2001, Perrin Harkins wrote: [...] Even a carefully coded system will leak over time, and I think killing off children after 1MB of growth would probably be too quick on the draw. I tend to set the number to N number of requests. If each httpd child needs to be forked every

Re: Redirecting a multipart/form-data POST request

2001-01-15 Thread Ask Bjoern Hansen
On Mon, 15 Jan 2001, Darren Stuart Embry wrote: [...] When I do neither, i.e., leave the POST request as is and use the standard redirect mechanism, the browser hangs and the server actually does not send the redirect until I hit the Stop button (I'm using ngrep to determine this). This

Re: ANNOUNCE: TPC5: mod_perl track: Call For Papers

2001-01-15 Thread Gerald Richter
Hi Stas, Ok, the CFP is officially out, let those proposals come in: All the details can be found here: http://perl.apache.org/conferences/tpc5-us/cfp.html I didn't found a link from anywhere to that page. I don't think it was your intention to hide that page. Shouldn't at least on

Re: [Fwd: AuthenDBI idea]

2001-01-15 Thread Ask Bjoern Hansen
On Mon, 15 Jan 2001, Edmund Mergl wrote: any comments ? [count number of times a user has logged in and such things] Other people would like to count / note / ... other things. It would be neater if you made an API the programmer could plug his own stuff into. Like "call this

Re: Specific limiting examples (was RE: Apache::SizeLimit for unsharedRAM ???)

2001-01-15 Thread Perrin Harkins
On Mon, 15 Jan 2001, Ask Bjoern Hansen wrote: I tend to set the number to N number of requests. If each httpd child needs to be forked every 1 requests that's pretty insignificant and it can save you from some blowups. The reason I like using SizeLimit instead of a number of requests is